mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-02-24 06:47:54 +01:00
Make DatabaseFullPrunedBlockStore.calculateBalanceFromAddress public rather than protected.
This commit is contained in:
parent
1da3a01194
commit
c2d3cec6b0
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue