mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-03-10 09:20:04 +01:00
Delete an unused line in AbstractBlockChain
This commit is contained in:
parent
53f526cef0
commit
fa57883a98
1 changed files with 0 additions and 1 deletions
|
@ -385,7 +385,6 @@ public abstract class AbstractBlockChain {
|
||||||
// Notify the listeners of the new block, so the depth and workDone of stored transactions can be updated
|
// Notify the listeners of the new block, so the depth and workDone of stored transactions can be updated
|
||||||
// (in the case of the listener being a wallet). Wallets need to know how deep each transaction is so
|
// (in the case of the listener being a wallet). Wallets need to know how deep each transaction is so
|
||||||
// coinbases aren't used before maturity.
|
// coinbases aren't used before maturity.
|
||||||
final BlockChainListener first = listeners.size() > 0 ? listeners.get(0) : null;
|
|
||||||
for (int i = 0; i < listeners.size(); i++) {
|
for (int i = 0; i < listeners.size(); i++) {
|
||||||
BlockChainListener listener = listeners.get(i);
|
BlockChainListener listener = listeners.get(i);
|
||||||
if (block.transactions != null || filteredTxn != null) {
|
if (block.transactions != null || filteredTxn != null) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue