mirror of
https://github.com/Qortal/qortal.git
synced 2025-02-11 17:55:50 +00:00
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…
x
Reference in New Issue
Block a user