Add AbstractBlockChain.removeWallet(). Resolves issue 419.

This commit is contained in:
Mike Hearn 2013-07-11 16:11:33 +02:00
parent 5c1063860a
commit 6a39af30c4

View File

@ -150,6 +150,11 @@ public abstract class AbstractBlockChain {
}
}
/** Removes a wallet from the chain. */
public void removeWallet(Wallet wallet) {
removeListener(wallet);
}
/**
* Adds a generic {@link BlockChainListener} listener to the chain.
*/