03:58:35 moneromooo: could you take a look at https://github.com/monero-project/monero/pull/7740 ? it is rpc pay related 04:21:21 also https://github.com/monero-project/monero/pull/7786 please :) 08:27:58 done 08:28:39 thanks 08:31:23 .merge+ 7740 08:31:24 Added 18:56:24 Dear, Privacy people, 18:56:24 What is the actual purpose of "double_spend_seen" and is it possible for it to be true on an incoming transfer (if yes how exactly), 18:56:24 we are making a gateway for payments and are wondering if it is important to handle this value in some way or just best to ignore it. 18:56:24 Thank you. 18:57:10 It's set if the same key image is seen in two different transactions. 18:57:52 It means there's a possible double spend attempt going on. You may choose to wait a bit more before acting on a tx if that flag it set. 18:59:01 but for example 3 blocks pass by. Wallet rpc would set it to false eventually? 18:59:08 No. 18:59:45 3 blocks is probably safe enough to assume you won't be double spent. 18:59:59 Unless big planned heist. 19:00:22 If you sell cheap stuff, 3 blocks should be fine. 19:02:14 Ok thanks. 19:03:08 Are we better of not acting on a tx at all in this case? 19:07:06 > <@moneromooo:libera.chat> Unless big planned heist. 19:07:06 * Are we better off not acting on a tx at all in this case? 19:09:08 How can the same key image get used multiple times if it's not someone with bad intentions? 19:18:05 You'll want to act, just later, to make sure you don't get scammed. 19:18:32 It can happen if people mess things up, and try to flush_txpool + rescan, and send a new tx. 19:18:53 Alright, thank you.