03:45:30 Is there a way to disable locking balance after sending to allow for sending rapidly from the monero-wallet-rpc? 04:13:14 no 04:13:34 make sure you have a lot of outputs in your wallet so that locking change doesn't become an issze 04:13:37 issue* 05:27:14 I'll add a second review to 8046 too I know this code well :) Will have it done by next week 10:40:49 moneromooo: any idea here? https://github.com/monero-project/monero/issues/8243 10:47:19 I commented. 10:51:13 @selsta,sorry。If users send utxos to my subaddresses, when I want to spend them, do I need to specify which subaddresses the utxo is from, or do I just use a primary address? 10:52:05 `... (full message at https://libera.ems.host/_matrix/media/r0/download/libera.chat/07589e2823549ae5c666568faf91145c4bfd2c1b) 10:52:07 You can select which output to spend with sweep_single. You don't have to though. 10:53:56 For example, this snippet of code. What does `accountIndex: 0` mean? Does it mean utxos only from the primary address? or only means the from address is the primary address and the utxos will be from all of my subaddresses? 10:55:27 Account index is... what it says. Subaddresses are defined by an account (32 bits) and an alias within an account (32 bit). Account index 0 means the first account, which is the default one, and this includes the wallet's standard address. 10:55:57 The "primary" (standard) address is a special case for backward compat. It's not a subaddress, but belongs to the first account. 10:56:19 And the 0,0 subaddress is not actually used, it's overridden by the standard address. 10:57:14 AFAIK, spending from account 0 will allow spending anyhting received to hte standard address as well as anything received to any subaddress in account 0.