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
Seeing entries in the blocks table with null values in the parent_id column. The archive node failed to add the parents of such blocks because of another issue (see the next point). I think we should make parent_id a NOT NULL field. For genesis block make parent_id point to the genesis blocks id (self-pointer)
Seeing the following error when adding some blocks:
internal_command_ids could be duplicated within a block.
For example: Two different fee transfers with the same fee and same receiver; one in a fee-transfer transaction and the other in a coinbase transaction as it was in this case or two different fee transfers with the same fee and same receiver but in different fee-transfer transactions (possible when a block occupies slots in two trees of a scan state)
The text was updated successfully, but these errors were encountered:
blocks
table with null values in theparent_id
column. The archive node failed to add the parents of such blocks because of another issue (see the next point). I think we should makeparent_id
aNOT NULL
field. For genesis block make parent_id point to the genesis blocks id (self-pointer)internal_command_id
s could be duplicated within a block.For example: Two different fee transfers with the same fee and same receiver; one in a fee-transfer transaction and the other in a coinbase transaction as it was in this case or two different fee transfers with the same fee and same receiver but in different fee-transfer transactions (possible when a block occupies slots in two trees of a scan state)
The text was updated successfully, but these errors were encountered: