Antoni Spaanderman

Results 144 comments of Antoni Spaanderman

That seems way too complicated, I think it would be best to wait for rust-bitcoin to add testnet4 support in some way, I see they are also improving the way...

Note that because the backport may not be a breaking change, it will be slightly different (adds a `Testnet4` enum variant to `Network` instead of a new `TestnetVersion` field in...

> @Evanfeenstra @antonilol how would a user define what low liquidity is? Would we just use a slider a user can set as the threshold before getting notified or is...

redb needs at least rustc 1.66, and the Database trait in the pr uses generic associated types which were stabilized in 1.65 (redb also uses them) 1.66 is almost 1...

stats so far: db size on signet (block height 197272), rocksdb: 152M, redb: 447M (rocksdb uses compression, right?) indexing time, rocksdb: 1 minute, redb: 6 minutes on ssd on hdd...

> why not sled? I initially considered starting with redb or sled, both are in beta, but I chose redb because [its file format is stable](https://github.com/cberner/redb?tab=readme-ov-file#status), contrary to sled which...

> fwiw sled claims to be in alpha now they name beta in their readme, anyway this should only be an issue if there are bugs in there, and the...

good news for sled: its minimum rust version is below that of electrs (redb would require a higher one) and I can work around not being able to use generic...

It shouldn't be annoying for electrs _users_, there is a bit of doc from sled on how to do migration, (import and export functions), in electrs we can make this...

bitcoin core probably disconnects electrs because the network magic is wrong, see https://en.bitcoin.it/wiki/Signet the magic in the electrs config is the default signet magic, but you use a custom signet...