fix for put operations

This commit is contained in:
Agnish Ghosh 2024-10-01 20:57:15 +05:30
parent b6e89eb7e3
commit 1ba8948466
1 changed files with 3 additions and 3 deletions

View File

@ -819,17 +819,17 @@ proc putDataColumnSidecar*(
db: BeaconChainDB,
value: DataColumnSidecar) =
let block_root = hash_tree_root(value.signed_block_header.message)
db.blobs.putSZSSZ(columnkey(block_root, value.index), value)
db.columns.putSZSSZ(columnkey(block_root, value.index), value)
proc delBlobSidecar*(
db: BeaconChainDB,
root: Eth2Digest, index: BlobIndex): bool =
db.blobs.del(blobkey(root, index)).expectDb()
db.columns.del(blobkey(root, index)).expectDb()
proc delDataColumnSidecar*(
db: BeaconChainDB,
root: Eth2Digest, index: ColumnIndex): bool =
db.blobs.del(columnkey(root, index)).expectDb()
db.columns.del(columnkey(root, index)).expectDb()
proc updateImmutableValidators*(
db: BeaconChainDB, validators: openArray[Validator]) =