Make DatabaseFullPrunedBlockStore.calculateBalanceFromAddress public rather than protected.

This commit is contained in:
Mike Hearn 2015-05-26 12:15:04 +02:00
parent 1da3a01194
commit c2d3cec6b0

View file

@ -1130,7 +1130,7 @@ public abstract class DatabaseFullPrunedBlockStore implements FullPrunedBlockSto
* address, the return value is 0.
* @throws BlockStoreException If there is an error getting the balance.
*/
protected BigInteger calculateBalanceForAddress(Address address) throws BlockStoreException {
public BigInteger calculateBalanceForAddress(Address address) throws BlockStoreException {
maybeConnect();
PreparedStatement s = null;
try {