03:46:54 luigi1111w: could you merge 8103 so that tests are green again? 03:52:36 I have two wallets under the path: /Users/sh07017ml/Monero/wallets/sh07017ml/. I can open one of them. But cannot open the other. This is my command:... (full message at https://libera.ems.host/_matrix/media/r0/download/libera.chat/9d5efded95caacaaa7cf0889b009e95a81642584) 03:54:06 I checked the wallet named "test". It has two documents: `test` and `test.keys`. 04:32:12 mj-xmr[m] can you approve it? 04:40:51 Hi. I'm new to this kind of stuff... Just would like to know if it is ok to simply clone (fork?) theĀ  source from the official repo and tinker with it to try and make my own token? 04:59:41 Guest71: read the LICENSE file 05:00:12 Ok. Thank you for answering. 05:01:55 to answer your question, basically yes, but there are conditions as written down in the LICENSE file 05:07:57 Yes. I'll read them carefully. 06:35:34 how can I start contributing? 06:59:07 "how can I start contributing?" <- http://moneroar4fiojlkzkvwgt25rp6vifswcpwaxbzlhfkdenczbhc4luqad.onion/monero-dev/monero-jobs.php 08:42:07 Can I derive the privateSpendKey from the privateViewKey? 08:42:41 Not in the general case. 08:42:49 It'd defeat the purpose. 09:09:14 https://github.com/monero-ecosystem/monero-javascript/blob/master/docs/developer_guide/view_only_offline.md 09:09:14 In the doc, the view-only wallet exports the outputsHex to the offline wallet, and then the offline wallet immediately exports the keyImage to the view-only wallet? 09:09:14 I thought the "Related one-time private key x(keyImage) is specific to unspent output." Since I haven't specified the amount yet, how does the offline wallet know which output is being used next, and bond to the Keyimage? 09:53:49 "mj-xmr can you approve it?" <- https://github.com/monero-project/monero/pull/8114 This one? 09:55:41 I call this `const result = MoneroUtils.validateAddress(address, net);`... (full message at https://libera.ems.host/_matrix/media/r0/download/libera.chat/2fa40dd3e1d100e9c4eb43913ff21a39458b51be) 09:57:00 If this is the case, then I'll have a look from a technical perspective, but I hope you know what you're doing. 10:36:26 mj-xmr[m]: luigi meant 8103 10:36:36 but you approved it already 10:38:13 selsta: Thanks God :P 10:39:35 I set up a view-only wallet using the Monero GUI. But after it finishes syncing, it seems there's a serious bug. I query the wallet for all the unspent outputs. But the ones are spent are also remarked as `spent: false`.... (full message at https://libera.ems.host/_matrix/media/r0/download/libera.chat/43696089c5e9f19a2f9c385fea6ef0541123d3c2) 10:41:30 * I set up a view-only wallet using the Monero GUI. But after it finishes syncing, it seems there's a serious bug. I query the wallet for all the UTXOs. But the ones that are spent are falsely remarked as `spent: false`.... (full message at https://libera.ems.host/_matrix/media/r0/download/libera.chat/625a6567ce17b130eb113cb17dc709448d17e414) 10:47:10 will.yijinin: that's because, in the current transaction protocol, viewkeys can only see incoming transactions, but not outgoing 10:47:27 (This wil most likely change in the future) 10:48:55 To mark transaction outputs as spent in the view-only wallet, you need a "full" version of the wallet to scan each one of them with the private spend key, then export the spent key images and import them in the view-only wallet 10:53:21 How do you do that while view-only wallet is scanning the transactions? endor00 10:54:03 Don't know, sorry 10:54:22 There should be some function that handles that 10:55:44 endor00: are you sure? It seems what you described are signing transactions with view wallet and offline wallet. 10:55:44 Why would I need private spend key to view if a transaction is spent or not?? 10:58:47 https://www.getmonero.org/resources/user-guides/view_only.html 10:59:05 endor00: Ok got it.