Browse Source

Update Block.java

block-archive
QuickMythril 3 years ago committed by GitHub
parent
commit
673ee4aeed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      src/main/java/org/qortal/block/Block.java

4
src/main/java/org/qortal/block/Block.java

@ -1100,6 +1100,10 @@ public class Block {
// Apply fix for block 535658 but fix will be rolled back before we exit method // Apply fix for block 535658 but fix will be rolled back before we exit method
Block535658.processFix(this); Block535658.processFix(this);
} }
else if (this.blockData.getHeight() == 536140) {
// Apply fix for block 536140 but fix will be rolled back before we exit method
Block536140.processFix(this);
}
for (Transaction transaction : this.getTransactions()) { for (Transaction transaction : this.getTransactions()) {
TransactionData transactionData = transaction.getTransactionData(); TransactionData transactionData = transaction.getTransactionData();

Loading…
Cancel
Save