forked from Qortal/qortal
Fixed bug causing final block to be missed in the reshape.
This commit is contained in:
parent
e1043ceacb
commit
b9015217de
@ -94,7 +94,7 @@ public abstract class RepositoryManager {
|
||||
int blockchainHeight = repository.getBlockRepository().getBlockchainHeight();
|
||||
int totalTransactionCount = 0;
|
||||
|
||||
for (int height = 1; height < blockchainHeight; height++) {
|
||||
for (int height = 1; height < blockchainHeight; ++height) {
|
||||
List<TransactionData> inputTransactions = new ArrayList<>();
|
||||
|
||||
// Fetch block and transactions
|
||||
|
Loading…
Reference in New Issue
Block a user