fixes missing block increment which prevents loading large dbs
This commit is contained in:
parent
14425b9102
commit
ba83c585f0
|
@ -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) {
|
||||||
|
|
Loading…
Reference in New Issue