Skip to content

Commit

Permalink
Merge #433: gui: fix wrong jsonrpc delspendtx request
Browse files Browse the repository at this point in the history
a0890d8 gui: fix wrong jsonrpc delspendtx request (edouard)

Pull request description:

ACKs for top commit:
  darosior:
    utACK a0890d8 -- I quickly double checked and i didn't find any other mistake.

Tree-SHA512: d322929f3bcc10e98681ae1dad5f84cfe27774e738058fa9df6612c1d5167a122557ce3f6d200c40610eddc80ff7c40be17e4ee40a2541875aac4d38b1327cc2
  • Loading branch information
darosior committed Apr 11, 2023
2 parents 9ebc898 + a0890d8 commit 4b2e7c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gui/src/daemon/client/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ impl<C: Client + Debug> Daemon for Lianad<C> {

fn delete_spend_tx(&self, txid: &Txid) -> Result<(), DaemonError> {
let _res: serde_json::value::Value =
self.call("deletespend", Some(vec![txid.to_string()]))?;
self.call("delspendtx", Some(vec![txid.to_string()]))?;
Ok(())
}

Expand Down

0 comments on commit 4b2e7c7

Please sign in to comment.