3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-02-13 10:45:51 +00:00

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. * address, the return value is 0.
* @throws BlockStoreException If there is an error getting the balance. * @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(); maybeConnect();
PreparedStatement s = null; PreparedStatement s = null;
try { try {