Merge #415: fix gui jsonrpc client: wrong createspend args

54fd0d8f50836d5d414dc43de88cfd86d3a210de fix gui jsonrpc client: wrong createspend args (edouard)

Pull request description:

  Wrong order.
  We should find a way to test the jsonrpc client agains the liana rpc api.

ACKs for top commit:
  edouardparis:
    Self-ACK 54fd0d8f50836d5d414dc43de88cfd86d3a210de

Tree-SHA512: 47da8c14b071121ab605ecf81265df77b4110dad3224f93c7af5053ca173a9dfb3ff4f289ae8ac8ce879b87155433739acb53b7d9377071c3a0df0fbbe0adafa
This commit is contained in:
edouard 2023-04-06 16:26:27 +02:00
commit fb6433439c
No known key found for this signature in database
GPG Key ID: E65F7A089C20DC8F

View File

@ -88,8 +88,8 @@ impl<C: Client + Debug> Daemon for Lianad<C> {
self.call(
"createspend",
Some(vec![
json!(coins_outpoints),
json!(destinations),
json!(coins_outpoints),
json!(feerate_vb),
]),
)