mirror of
https://github.com/Qortal/altcoinj.git
synced 2025-01-30 23:02:15 +00:00
Delete an unused line in AbstractBlockChain
This commit is contained in:
parent
53f526cef0
commit
fa57883a98
@ -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…
Reference in New Issue
Block a user