00:53:52 Hello everyone, 00:53:52 I’m developing a personal-use system where I intend to perform transactions via atomic swaps. 00:53:52 I’m currently using a rendezvous/discovery node (please correct me if this terminology isn’t accurate), but I’m having difficulty finding enough peers online and available.[... more lines follow, see https://mrelay.p2pool.observer/e/krrBgeIKNVBVdGN4 ] 05:23:27 Any thoughts on current market opportunities or new projects worth watching? 11:57:11 Does monero-wallet-rpc only bind and start listening for RPC calls once the block sync is done? 12:06:55 deavmi yes unless you add flag --no-initial-sync 12:30:39 no initial sync will allow all other components to immediately start 12:30:50 and then synchronization countinues elsewhere (seprate to start up thread)? 12:41:30 correct, you can then poll the wallets height to check if its = to current block height 12:47:00 ah 12:47:01 neato 12:47:02 thanks plowsof 12:51:41 works :_ 12:51:42 * :) 12:56:14 plowsof: should RPC calls take so long though, feels like sometimes I am waiting forever, at least whilstn the blocks are syncing... 12:56:18 Even with that option you provided 12:56:31 Is some internal lock held for the duration of block sync 12:56:32 ? 12:57:19 I wonder if --max-concurrency could be set to somethine maybe... 13:07:03 nvm not that, just gotta wait for this sync I guess 13:07:26 Thing is I open and close an RPC connection, so that initial connection that I get due to --no-initial-sync is not re-used. I should probably look into that 13:08:06 The wallet rpc server does take a bit to start even with no initial sync, i have no idea what you're using but e.g. in python you can start the binary and read stdout and wait to see the rpc init line print. Then make your calls 13:08:46 Using https://github.com/moneropay/go-monero 13:08:57 Ah some calls require the wallet to be synced 13:09:03 Ah 13:09:06 Could be encountering that? 13:09:08 Dummy me should have read that 13:09:10 Probably 13:09:37 If I remove the --daemon from monero-wallet-rpc then calls work fine as it (the go library) doesn't see it syncing 13:09:39 makes sense 13:09:43 thanks plowsof, ;) 13:10:08 [15:08:57] <@plowsof> Ah some calls require the wallet to be synced 13:10:13 Yeah the ones I am doing are getBalance related 13:10:13 There is #monero-community-dev also for none core help and sharing what you're working on too 13:10:15 so makes sense 13:10:23 plowsof: Will join, thanks! 13:11:32 Althogh seems like my first call, getting adresses, even takes some time. I will let the wallet sync and once that's done I will then give this a shot again 13:11:53 Ofc, in whatever I end up building, I'll add timeouts and all for this, go makes that relatively easy from the get-go (no pun intended) 13:12:02 Just tryna get my feet wet with how monero's side of things work