mirror of
https://github.com/Qortal/qortal.git
synced 2025-07-27 04:01:24 +00:00
Fixed bug causing final block to be missed in the reshape.
This commit is contained in:
@@ -94,7 +94,7 @@ public abstract class RepositoryManager {
|
|||||||
int blockchainHeight = repository.getBlockRepository().getBlockchainHeight();
|
int blockchainHeight = repository.getBlockRepository().getBlockchainHeight();
|
||||||
int totalTransactionCount = 0;
|
int totalTransactionCount = 0;
|
||||||
|
|
||||||
for (int height = 1; height < blockchainHeight; height++) {
|
for (int height = 1; height < blockchainHeight; ++height) {
|
||||||
List<TransactionData> inputTransactions = new ArrayList<>();
|
List<TransactionData> inputTransactions = new ArrayList<>();
|
||||||
|
|
||||||
// Fetch block and transactions
|
// Fetch block and transactions
|
||||||
|
Reference in New Issue
Block a user