We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17e19ce commit 435f2e9Copy full SHA for 435f2e9
client/src/client_sync/v18/raw_transactions.rs
@@ -35,14 +35,14 @@ macro_rules! impl_client_v18__join_psbts {
35
};
36
}
37
38
-/// Implements Bitcoin Core JSON-RPC API method `uxtoupdatepsbt`.
+/// Implements Bitcoin Core JSON-RPC API method `utxoupdatepsbt`.
39
#[macro_export]
40
macro_rules! impl_client_v18__utxo_update_psbt {
41
() => {
42
impl Client {
43
- pub fn utxo_update_psbt(&self, psbt: &bitcoin::Psbt) -> Result<JoinPsbts> {
+ pub fn utxo_update_psbt(&self, psbt: &bitcoin::Psbt) -> Result<UtxoUpdatePsbt> {
44
let psbt = format!("{}", psbt);
45
- self.call("uxtoupdatepsbt", &[psbt.into()])
+ self.call("utxoupdatepsbt", &[psbt.into()])
46
47
48
0 commit comments