fixes missing block increment which prevents loading large dbs

This commit is contained in:
Eyck Jentzsch 2023-03-18 10:12:27 +01:00
parent 14425b9102
commit ba83c585f0
1 changed files with 1 additions and 0 deletions

View File

@ -84,6 +84,7 @@ class TxStream extends AbstractTxStream {
int blockid = 0; int blockid = 0;
for (byte[] bs : chunks) { for (byte[] bs : chunks) {
loader.parseTx(this, blockid, bs); loader.parseTx(this, blockid, bs);
blockid++;
} }
} catch (InputFormatException e) { } catch (InputFormatException e) {
} catch (IOException e) { } catch (IOException e) {