You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
LIB is 405343384. Block 405343385 is trying to link to a block 405343384 that doesn't exist because it has been forked out.
The exception above is reported in push_block. In main this method no longer adds to the fork database. I think this situation is greatly reduced by the block processing optimizations already in main. See #619, #688, #802.
Likely not worth doing anything in release/1.0.
The text was updated successfully, but these errors were encountered:
An
unlinkable_block_exception
is thrown when a block is received that doesn't link to a block in the fork database.We currently check if a block received on the network is <= LIB:
spring/plugins/net_plugin/net_plugin.cpp
Line 3032 in 90d255a
And discard it.
However, a block can make it pass this check and LIB move before it is put into the fork database. For example:
LIB is 405343384. Block 405343385 is trying to link to a block 405343384 that doesn't exist because it has been forked out.
The exception above is reported in
push_block
. Inmain
this method no longer adds to the fork database. I think this situation is greatly reduced by the block processing optimizations already inmain
. See #619, #688, #802.Likely not worth doing anything in
release/1.0
.The text was updated successfully, but these errors were encountered: