[monero-project/monero] RPC Transfer Error -> No destinations for this transfer (#4244)
@stoffu okay, now it works great!
Thank you guys!
Похожие записи
- [monero-project/monero] RPC Transfer Error -> No destinations for this transfer (#4244)
The docs should be fixed then https://github.com/monero-project/monero/wiki/Wallet-RPC-Documentation#transfer Thanks for you help
- [monero-project/monero] RPC Transfer Error -> No destinations for this transfer (#4244)
Hello, after the last update v0.12.3.0 I cannot send XMR to another addresses. Inputs: Array ( [destinations] => Array (
- [monero-project/monero] RPC Transfer Error -> No destinations for this transfer (#4244)
@i3bitcoin Your JSON is in a wrong format. `destinations` is supposed to be an array of object consisting of `address` and `amount`, so instead of ```json {"id":1,"method":"transfer","params":[{"destinations":{"amount":210000000000,"address":"address"},"payment_id":"payment_id","mixin":0,"unlock_time":0}]} ``` it should be ```json {"id":1,"method":"transfer","params":{"destinations":[{"amount":210000000000,"address":"address"}],"payment_id":"payment_id","mixin":0,"unlock_time":0}} ```
- [monero-project/monero] unsigned_monero_tx and submit_transfer using RPC (#3272)
@johnconger @zkaf According to wallet2::sign_tx method, the command [sign_transfer] only produces file that is encrypted by secret_view_key. However the command [sign_transfer export] produces both **that is NOT encrypted** and as well. The RPC '/sendrawtransaction' seems…
- [monero-project/monero] RPC Transfer Error -> No destinations for this transfer (#4244)
Please post the JSON you're sending.