Open stanbar opened 1 year ago
I had the same problem. I think the problem is that the code to parse the arguments for the transfer command doesn't match the usage statement. You seem to have to provide a ring size, even though the usage statement indicates that it is an optional parameter:
Note that at line 6275, it only checks to see if you have more than zero arguments left, and if you do, it interprets the first argument as the ring size. This doesn't match the usage statement, and the error checking block for the call to get_xtype_from_string
is, rather hilariously, empty.
I don't know how to fix the code, but I was able to get transactions to spend by putting a value in front of the address, so that the ring_size
parameter gets a value. This worked:
transfer 16 REDACTED_ADDRESS REDACTED_AMOUNT
but this didn't:
transfer REDACTED_ADDRESS REDACTED AMOUNT
Hi, I'm trying to send a transaction using
monero-wallet-cli
connected to local stagenet.I'm running local stage net two nodes (as suggested on stackoverflow)
then connecting to them on two terminals with
monero-wallet-cli --stagenet
After mining some XMR I try to send the transaction from the first one to the second one, but I get an error:
I tried using two different machines, Arch linux x86 and MacBook Apple M1, both of them throw the same error.