Skip to content

Tags: erigontech/silkworm

Tags

capi-0.24.0

Toggle capi-0.24.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
db: cleanup DomainState unit tests (#2717)

capi-0.23.0

Toggle capi-0.23.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
db: fix Windows build after PR 2686 (#2689)

capi-0.22.1

Toggle capi-0.22.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
datastore: DomainGetLatestQuery for snapshots and datastore (#2656)

DomainGetLatestQuery was implemented only for kvdb before.

This implements DomainGetLatestQuery for snapshots
and combines both queries on the datastore.

The example usages are updated in LocalState.

DomainGetLatestQuery uses BloomFilter existence index. Previously BloomFilter only accepted uint64_t as a lookup key. Now it is able to lookup using any ByteView key much like RecSplit/AccessorIndex. Hashing this key requires having a salt from "salt-state.txt". This file is read by SnapshotRepository::reopen_folder() and passed along to the BloomFilter constructor. If a SnapshotRepository is externally managed (via CAPI), the index_salt is expected to be passed on construction via CAPI.

Additional changes:
* disable domain accessor index by default - it is unused in Erigon 3 ATM
* move murmur_hash3 to snapshots/common - to reuse in BloomFilterKeyHasher
* "Snapshots" is added into snapshots codec names to distinguish from KVDB codecs, necessary codecs added

capi-0.22.0

Toggle capi-0.22.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
rpcdaemon: fix clang tidy after PR 2403 (#2404)

capi-0.21.1

Toggle capi-0.21.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
capi: Fix batch size control (#2308)

On db::Buffer::MemoryLimitError the block has already been popped from the block_buffer. Then in the next iteration we would get the next block and the assert SILKWORM_ASSERT(block->header.number == block_number) would fail. For this to work we need to re-insert the failed block in the exception handler.

capi-0.21.0

Toggle capi-0.21.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
db: BodySnapshotFreezer use sequential txn_id without gaps (#2215)

capi-0.20.1

Toggle capi-0.20.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
db: add extra tests for Buffer (#2171)

capi-0.20.0

Toggle capi-0.20.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
ci: gcc 14 in linux-gcc-thread-sanitizer (#2166)

capi-0.19.0

Toggle capi-0.19.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
sentry: improve reconnect_channel logging (#2054)

capi-0.18.0

Toggle capi-0.18.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
capi: fix sanitizer build after PR 1978 (#1981)