11:55:56 If I understand things correctly, the monero multi sig function is still experiment and not audited? 12:40:39 That's also my understanding, yes. 12:41:25 However what exactly that means, and how to behave in the light of this, is open to debate IMHO. 13:34:55 Am I understanding correctly that the monero lmdb database does not actually use the hash key in the block_heights sub database any further? 13:34:55 Not too familiar with lmdb, but looks like the dupsort flags make it so we compare based on the value now? I'm asking because, I was working to get a rust lang heed wrapper built and when I iterate the key's of block_heights I'm seeing they're all zero keys ([0u8; 8]). For sub database's without hashes as the key, I can successfully query and find as expected? 14:32:45 Yeah, for some tables `monerod` has the `key` as `[0; 8]` and will instead add the key to the value, setting a custom value sort function to sort by the key part of the value. 14:33:23 I don't think `heed` exposes enough of the LMDB API currently to do this though. 14:34:16 Someone has a pr out with dupsort support that is queued for next release, I think this is all I need 14:34:41 https://github.com/meilisearch/heed/pull/283 14:36:41 Do you understand the history behind this decision? I expect its due to some lmdb specifics, but from an initial view very weird to not be using the key column of a database 14:37:07 Only hyc can probably answer this 14:37:23 pretty sure it saves some bytes per value 14:43:52 https://github.com/monero-project/monero/blob/893916ad091a92e765ce3241b94e706ad012b62a/src/blockchain_db/lmdb/db_lmdb.cpp#L207 14:44:21 oof, i gotta read the docs! 15:10:14 Do you guys think we should actually integrate the unstoppable swap into the monero main gui wallet? So we can swap to btc/eth/ltc/bch directly in gui wallet, and somehow makes monero harder to delist in the future? 16:15:47 more boost incompatabilites we have to fix soon https://github.com/monero-project/monero/issues/9596 16:15:57 before it breaks CI builds again 16:50:14 not_a_money_printer: In my understanding, the Unstoppable software goes through a major rework right now, so it may make sense to wait until that's complete: https://ccs.getmonero.org/proposals/mature-atomic-swaps-ecosystem.html 20:45:27 Hi