16:47:51 Hello. Does the Monero RPC return double_spend_seen as true if the transaction is included in the current best blockchain, but was a double spend? Or it's true only if the transaction is not included in the current blockchain? 16:53:35 double_spend_seen is set for transactions in mempool. Monero node rejects double spend transaction and marks "double_spend_seen" for the transaction that was added there first 16:54:09 Thank you very much. 16:55:44 So it's relatively safe to accept Monero with zero confirmations, as long as double_spend_seen is false! Very nice feature. 17:08:08 Double spend transactions don't propagate to all nodes, so you're not guaranteed to see it 17:11:48 Is it guaranteed that, if a coinbase transaction is not in the current best blockchain, and so it's an "orphaned", when querying the daemon about that transaction, it provides no result with the get_transactions RPC call? 17:18:05 Coinbase tx? It shouldn't exist anymore if it was orphaned 17:18:25 Regular orphaned transactions are returned to the mempool 17:23:26 all right, thank you very much