mirror of
https://github.com/Qortal/altcoinj.git
synced 2025-11-02 21:47:18 +00:00
Fix a wrong lock, spotted by Andreas
This commit is contained in:
committed by
Andreas Schildbach
parent
8942680ec0
commit
9225cf8c1f
@@ -674,11 +674,11 @@ public class Wallet extends BaseTaggableObject implements Serializable, BlockCha
|
||||
|
||||
/** See {@link org.bitcoinj.wallet.DeterministicKeyChain#setLookaheadSize(int)} for more info on this. */
|
||||
public void setKeychainLookaheadSize(int lookaheadSize) {
|
||||
lock.lock();
|
||||
keychainLock.lock();
|
||||
try {
|
||||
keychain.setLookaheadSize(lookaheadSize);
|
||||
} finally {
|
||||
lock.unlock();
|
||||
keychainLock.unlock();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user