16:36:19 when Tari goes fully online with it's merged mining, will we need to update mining software yet again for Monero mining alone ? 16:37:19 Unlikely. 16:37:33 kk thanks 16:37:43 The point of merge mining is to piggy back on an existing chain without having to modify it. 16:38:16 got it 16:38:30 You'll want to ask the tari people to know what they're planning to do though. 16:39:01 time will tell, see you later. 18:17:00 ² 18:20:28 Hey, I am working with python and monero's lmdb. Is there a document/documentation that describes how the data is stored in the database, e.g. the 'blocks' db. I can extract most of the data but some does not make any sense like the timestamp e.g. This is an example of a block in the 'blocks' db: https://paste.debian.net/1143893/ 18:24:12 Structures near the top of db_lmdb.cpp for the monero specific stuff. lmdb.h for the overal lmdb format. 18:50:49 no point in parsing the raw LMDB format, just use the library... 18:51:06 py-lmdb is quite a good wrapper, too 18:57:21 Ah, nice. Thanks a lot for the hints. I will have a closer look. 20:38:23 No point in parsing the monero layer either, use blockchain_lmdb :) 20:38:27 No point in parsing the monero layer either, use blockchain_db :) 21:22:11 yeah, the logical layer is easier to use than the K/V layer 21:22:21 that's kinda how it always should be