00:31:49 moneromoooo: do you have a handy link to your work on embedding data in transactions? a github issue, PR, or branch? 00:31:57 or kayabanerve[m] 00:36:15 Mooo published under townforge iirc 00:36:58 I never did any work besides an additional Nonce field, but I can PM you a list of ideas 08:19:59 UkoeHB: https://git.townforge.net/townforge/townforge/commit/7c70d0ef6e4900434e54cb7cf071074d3d4da66b 08:20:22 There was a good reason it would not really work for monero in practice, can't recall what it was just now. 08:22:06 Oh right: the recipient learns which spend is the real spend for rings which do include some embedded data. Which is an OK compromise in a game's case, not in monero's. 08:22:36 Not quite right: 08:23:09 the recipient learns a subset of the fake spends in a ring that contains embedded data. 08:23:26 This collapses to learning the real spend if the ring is chock full of data, which it doesn't have to be. 08:24:08 So if the embedded data is limited in size, you could stop the leak to making ring size a bit less to the recipient, which may be acceptable. 08:24:25 However, you cannot enforce this at consensus level for obvious reasons. 08:25:14 Well, scratch that last one. There may be cunning crypto things that let you do that with range proofs... 20:47:22 "DNS is not centralised but the..." <- In the U.S. governments hands, more than in your government hands 20:47:41 moneromoooo: thanks 20:47:51 By default most devices use Google or CloudFlare DNS servers 20:48:21 I'm building Monero and its dependencies as in:... (full message at ) 20:51:07 in `/home/user/src/flutter_libmonero/scripts/windows/build/monero/contrib/depends/x86_64-w64-mingw32/share/toolchain.cmake` I do have these variables and others defined, but it doesn't seem to be being used properly... (full message at ) 20:51:27 s/`/home/user/src/flutter_libmonero/scripts/windows/build//`/ 20:52:07 and libunbound.a etc are there in /lib, unbound.h is in /include, etc 20:53:04 I tried... (full message at ) 20:54:12 s//share/toolchain.cmake// 21:15:42 -DCMAKE_FIND_DEBUG_MODE=On might help you figure out why it's not finding it. 21:17:57 You might also find this useful: https://github.com/feather-wallet/feather/blob/master/Dockerfile.windows 21:28:08 Do you specify the full path to the toolchain file? Like -DCMAKE_TOOLCHAIN_FILE=${PWD}/contrib/depends/x86_64-w64-mingw32/share/toolchain.cmake 21:31:35 Yes, but neither neither -DCMAKE_TOOLCHAIN_FILE=${WORKDIR}/contrib/depends/x86_64-w64-mingw32/share/toolchain.cmake nor -DCMAKE_TOOLCHAIN=${WORKDIR}/contrib/depends/x86_64-w64-mingw32 as in contrib/depends/README.md 21:31:54 * Yes, but neither neither -DCMAKE_TOOLCHAIN_FILE=${WORKDIR}/contrib/depends/x86_64-w64-mingw32/share/toolchain.cmake nor -DCMAKE_TOOLCHAIN=${WORKDIR}/contrib/depends/x86_64-w64-mingw32 (as in contrib/depends/README.md) work 21:33:09 absolute paths similarly 21:38:14 nevermind, that was the issue actually; don't use `-DCMAKE_TOOLCHAIN` as in the README, use `-DCMAKE_TOOLCHAIN_FILE` as @tobtoht#2231 said. Thank you! 21:38:34 I had to clear my cached cmakefiles in order to realize that 21:40:56 sneurlax[m]: Nice 21:44:25 Looks like a fix for the README already made it's way into master