00:34:19 hello 00:34:32 has anyone experienced the bug that says 00:34:41 "invalid signature' when you try to login 00:35:02 I know that my password is right because if i enter it wrong it says 'invalid password' 00:35:16 any thoughts? 00:52:42 anyone there? 00:53:14 hello? 00:55:02 edwardosanchez[m: be patient. somebody will respond when they're available 08:21:25 edwardosanchez[m: Do you still have the 25 word mnemonic seed? 13:39:42 Do you think Atomic Swaps will come available within 2021? 13:48:23 yes 13:57:10 Thanks sech, hopefully by that time iv accumilated enough haha 15:11:26 How does one interact with the blockchain DB? Tried to use the python lmdb module, and it threw me an MDB_VERSION_MISMATCH 15:15:38 koork, i don't know for sure, but its possible the python repo you found isn't updated. whats the link? 15:16:59 also, and again im no expert, but you can interact with the monero blockchain using monerod directly or through curl 15:17:52 you need to build the python module against the version of liblmdb that monerod uses 15:18:13 which is usually newer/different from whatever version py-lmdb uses by default 15:23:03 tbh I just pip installed it... Where can I find which version monerod uses? I'm new to the codebase 15:26:50 external/db_drivers/liblmdb 15:32:10 Thank you! 16:14:14 How would you best go about making a provably fair monero lottery? Would taking the last two chars of a given block to choose the winner be enough? 16:14:49 block hash* 16:14:56 of course 16:15:00 something like https://monero.win 16:16:22 yes, almost the same mechanism but the coins are collected from multiple users and given to one winner 16:26:57 Remember kids. If you call project coral reef for what it is - fluffy embezzling half a mil usd from the monero fund for a website with smaller adoption than monero woo plugin, you will get excommunicated. 23:23:12 did some commands get purged from the daemon? 23:23:50 not seeing many of these: https://web.getmonero.org/resources/developer-guides/daemon-rpc.html 23:24:38 Hello community, I have a little noobish question, since I want to dig in the monero project I also have to learn about make and cmake. Now the question: In the top directory makefile: Where a the variables {$target} and {$CURDIR} defined? 23:26:59 ah, I see. all the "get" commands have been renamed to "print" 23:29:50 I studied the GNU make documentation, but it not find an answer where those variables come from, if they are set automatically or something like that 23:33:30 Ok {$CURDIR} is automatic, but {$target}? 23:37:14 You pass the target on the command line when building depends. 23:39:11 No obviously with "target" the target plattform is meant, value of variable is "MINGW64_NT-10.0-19041" in my case 23:39:30 No. 23:39:35 the thing is I cannot read something about such a variabel in the GNU make documentation 23:40:26 Makefile in top root dir. Line 54 "cd build/$(target)/release" 23:40:47 Where is the variabel "target" defined? 23:40:56 That's for depends target. Are you building depends ? 23:41:19 Or are you trying to build for Win64 in MSYS2 ? 23:43:21 Yes, I did built on the latter 23:43:52 And you are confused by depends ? 23:43:57 It is just an educational question where I can find a predefined variable documented 23:44:14 It is not predefined. You pass it on the command line. 23:45:16 On Linux: make depends HOST=x86_64-w64-mingw32 23:45:32 x86_64-w64-mingw32 is the target. 23:46:53 It may even be `make depends target=x86_64-w64-mingw32`. I don't remember any more. 23:47:41 Ok now I see what you mean by confusion 23:48:24 I often use "make debug-static-win64" so there is no such variable 23:48:26 depends targets are used for gitian builds. Nothing to do with native builds. 23:48:46 Thanks a lot, question is answered now