Skip to content

Implement abortrescan method and test #244

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions client/src/client_sync/v17/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ crate::impl_client_v17__verify_message!();

// == Wallet ==
crate::impl_client_v17__abandon_transaction!();
crate::impl_client_v17__abort_rescan!();
crate::impl_client_v17__add_multisig_address!();
crate::impl_client_v17__bump_fee!();
crate::impl_client_v17__create_wallet!();
Expand Down
10 changes: 10 additions & 0 deletions client/src/client_sync/v17/wallet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,16 @@ macro_rules! impl_client_v17__abandon_transaction {
};
}

/// Implements Bitcoin Core JSON-RPC API method `abortrescan`.
#[macro_export]
macro_rules! impl_client_v17__abort_rescan {
() => {
impl Client {
pub fn abort_rescan(&self) -> Result<AbortRescan> { self.call("abortrescan", &[]) }
}
};
}

/// Implements Bitcoin Core JSON-RPC API method `addmultisigaddress`.
#[macro_export]
macro_rules! impl_client_v17__add_multisig_address {
Expand Down
1 change: 1 addition & 0 deletions client/src/client_sync/v18/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ crate::impl_client_v17__verify_message!();

// == Wallet ==
crate::impl_client_v17__abandon_transaction!();
crate::impl_client_v17__abort_rescan!();
crate::impl_client_v17__add_multisig_address!();
crate::impl_client_v17__bump_fee!();
crate::impl_client_v17__create_wallet!();
Expand Down
1 change: 1 addition & 0 deletions client/src/client_sync/v19/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ crate::impl_client_v17__verify_message!();

// == Wallet ==
crate::impl_client_v17__abandon_transaction!();
crate::impl_client_v17__abort_rescan!();
crate::impl_client_v17__add_multisig_address!();
crate::impl_client_v17__bump_fee!();
crate::impl_client_v17__create_wallet!();
Expand Down
1 change: 1 addition & 0 deletions client/src/client_sync/v20/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ crate::impl_client_v17__verify_message!();

// == Wallet ==
crate::impl_client_v17__abandon_transaction!();
crate::impl_client_v17__abort_rescan!();
crate::impl_client_v17__add_multisig_address!();
crate::impl_client_v17__bump_fee!();
crate::impl_client_v17__create_wallet!();
Expand Down
1 change: 1 addition & 0 deletions client/src/client_sync/v21/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ crate::impl_client_v17__verify_message!();

// == Wallet ==
crate::impl_client_v17__abandon_transaction!();
crate::impl_client_v17__abort_rescan!();
crate::impl_client_v17__add_multisig_address!();
crate::impl_client_v17__bump_fee!();
crate::impl_client_v17__create_wallet!();
Expand Down
1 change: 1 addition & 0 deletions client/src/client_sync/v22/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ crate::impl_client_v17__verify_message!();

// == Wallet ==
crate::impl_client_v17__abandon_transaction!();
crate::impl_client_v17__abort_rescan!();
crate::impl_client_v17__add_multisig_address!();
crate::impl_client_v17__bump_fee!();
crate::impl_client_v17__create_wallet!();
Expand Down
1 change: 1 addition & 0 deletions client/src/client_sync/v23/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ crate::impl_client_v17__verify_message!();

// == Wallet ==
crate::impl_client_v17__abandon_transaction!();
crate::impl_client_v17__abort_rescan!();
crate::impl_client_v17__add_multisig_address!();
crate::impl_client_v17__bump_fee!();
crate::impl_client_v23__create_wallet!();
Expand Down
1 change: 1 addition & 0 deletions client/src/client_sync/v24/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ crate::impl_client_v17__verify_message!();

// == Wallet ==
crate::impl_client_v17__abandon_transaction!();
crate::impl_client_v17__abort_rescan!();
crate::impl_client_v17__add_multisig_address!();
crate::impl_client_v17__bump_fee!();
crate::impl_client_v23__create_wallet!();
Expand Down
1 change: 1 addition & 0 deletions client/src/client_sync/v25/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ crate::impl_client_v17__verify_message!();

// == Wallet ==
crate::impl_client_v17__abandon_transaction!();
crate::impl_client_v17__abort_rescan!();
crate::impl_client_v17__add_multisig_address!();
crate::impl_client_v17__bump_fee!();
crate::impl_client_v23__create_wallet!();
Expand Down
1 change: 1 addition & 0 deletions client/src/client_sync/v26/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ crate::impl_client_v17__verify_message!();

// == Wallet ==
crate::impl_client_v17__abandon_transaction!();
crate::impl_client_v17__abort_rescan!();
crate::impl_client_v17__add_multisig_address!();
crate::impl_client_v17__bump_fee!();
crate::impl_client_v23__create_wallet!();
Expand Down
1 change: 1 addition & 0 deletions client/src/client_sync/v27/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ crate::impl_client_v17__verify_message!();

// == Wallet ==
crate::impl_client_v17__abandon_transaction!();
crate::impl_client_v17__abort_rescan!();
crate::impl_client_v17__add_multisig_address!();
crate::impl_client_v17__bump_fee!();
crate::impl_client_v23__create_wallet!();
Expand Down
1 change: 1 addition & 0 deletions client/src/client_sync/v28/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ crate::impl_client_v17__verify_message!();

// == Wallet ==
crate::impl_client_v17__abandon_transaction!();
crate::impl_client_v17__abort_rescan!();
crate::impl_client_v17__add_multisig_address!();
crate::impl_client_v17__bump_fee!();
crate::impl_client_v23__create_wallet!();
Expand Down
1 change: 1 addition & 0 deletions client/src/client_sync/v29/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ crate::impl_client_v17__verify_message!();

// == Wallet ==
crate::impl_client_v17__abandon_transaction!();
crate::impl_client_v17__abort_rescan!();
crate::impl_client_v17__add_multisig_address!();
crate::impl_client_v17__bump_fee!();
crate::impl_client_v23__create_wallet!();
Expand Down
8 changes: 8 additions & 0 deletions integration_test/tests/wallet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,14 @@ fn wallet__abandon_transaction() {
node.client.abandon_transaction(txid).expect("abandontransaction");
}

#[test]
fn wallet__abort_rescan() {
let node = Node::with_wallet(Wallet::Default, &[]);

let json: AbortRescan = node.client.abort_rescan().expect("abortrescan");
assert!(!json.0); // No rescan running, abort should return false
}

#[test]
#[cfg(feature = "TODO")]
fn wallet__add_multisig_address__modelled() {
Expand Down
18 changes: 9 additions & 9 deletions types/src/v17/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@
//! | JSON-RPC Method Name | Returns | Notes |
//! |:-----------------------------------|:---------------:|:--------------------------------------:|
//! | abandontransaction | returns nothing | |
//! | abortrescan | returns nothing | |
//! | abortrescan | version | |
//! | addmultisigaddress | version + model | UNTESTED |
//! | backupwallet | returns nothing | |
//! | bumpfee | version + model | |
Expand Down Expand Up @@ -271,14 +271,14 @@ pub use self::{
ValidateAddress, ValidateAddressError, VerifyMessage,
},
wallet::{
AddMultisigAddress, AddMultisigAddressError, AddressInformation, BumpFee, BumpFeeError,
CreateWallet, DumpPrivKey, DumpWallet, GetAddressInfo, GetAddressInfoEmbedded,
GetAddressInfoEmbeddedError, GetAddressInfoError, GetAddressInfoLabel, GetAddressesByLabel,
GetBalance, GetNewAddress, GetRawChangeAddress, GetReceivedByAddress, GetTransaction,
GetTransactionDetail, GetTransactionDetailError, GetTransactionError,
GetUnconfirmedBalance, GetWalletInfo, GetWalletInfoError, ListAddressGroupings,
ListAddressGroupingsError, ListAddressGroupingsItem, ListLabels, ListLockUnspent,
ListLockUnspentItem, ListLockUnspentItemError, ListReceivedByAddress,
AbortRescan, AddMultisigAddress, AddMultisigAddressError, AddressInformation, BumpFee,
BumpFeeError, CreateWallet, DumpPrivKey, DumpWallet, GetAddressInfo,
GetAddressInfoEmbedded, GetAddressInfoEmbeddedError, GetAddressInfoError,
GetAddressInfoLabel, GetAddressesByLabel, GetBalance, GetNewAddress, GetRawChangeAddress,
GetReceivedByAddress, GetTransaction, GetTransactionDetail, GetTransactionDetailError,
GetTransactionError, GetUnconfirmedBalance, GetWalletInfo, GetWalletInfoError,
ListAddressGroupings, ListAddressGroupingsError, ListAddressGroupingsItem, ListLabels,
ListLockUnspent, ListLockUnspentItem, ListLockUnspentItemError, ListReceivedByAddress,
ListReceivedByAddressError, ListReceivedByAddressItem, ListSinceBlock, ListSinceBlockError,
ListSinceBlockTransaction, ListSinceBlockTransactionError, ListTransactions,
ListTransactionsItem, ListTransactionsItemError, ListUnspent, ListUnspentItem,
Expand Down
8 changes: 8 additions & 0 deletions types/src/v17/wallet/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,14 @@ pub enum Bip125Replaceable {
Unknown,
}

/// Result of JSON-RPC method `abortrescan`.
///
/// > abortrescan
/// >
/// > Stops current wallet rescan triggered by an RPC call, e.g. by an importprivkey call.
#[derive(Clone, Debug, PartialEq, Deserialize, Serialize)]
pub struct AbortRescan(pub bool);

/// Result of the JSON-RPC method `addmultisigaddress`.
///
/// > addmultisigaddress nrequired ["key",...] ( "label" "address_type" )
Expand Down
49 changes: 25 additions & 24 deletions types/src/v18/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@
//! | JSON-RPC Method Name | Returns | Notes |
//! |:-----------------------------------|:---------------:|:--------------------------------------:|
//! | abandontransaction | returns nothing | |
//! | abortrescan | returns nothing | |
//! | abortrescan | version | |
//! | addmultisigaddress | version + model | UNTESTED |
//! | backupwallet | returns nothing | |
//! | bumpfee | version + model | |
Expand Down Expand Up @@ -242,29 +242,30 @@ pub use self::{
};
#[doc(inline)]
pub use crate::v17::{
AddMultisigAddress, AddMultisigAddressError, AddedNode, AddedNodeAddress, AddressInformation,
Banned, Bip32Deriv, Bip9Softfork, Bip9SoftforkStatus, BumpFee, BumpFeeError, ChainTips,
ChainTipsError, ChainTipsStatus, CombinePsbt, CombineRawTransaction, ConvertToPsbt,
CreateMultisig, CreateMultisigError, CreatePsbt, CreateRawTransaction, CreateWallet,
DecodePsbt, DecodePsbtError, DecodeRawTransaction, DecodeScript, DecodeScriptError,
DumpPrivKey, DumpWallet, EstimateSmartFee, FinalizePsbt, FinalizePsbtError, FundRawTransaction,
FundRawTransactionError, Generate, GenerateToAddress, GetAddedNodeInfo, GetAddressInfo,
GetAddressInfoEmbedded, GetAddressInfoEmbeddedError, GetAddressInfoError, GetAddressInfoLabel,
GetAddressesByLabel, GetBalance, GetBestBlockHash, GetBlockCount, GetBlockHash, GetBlockHeader,
GetBlockHeaderError, GetBlockHeaderVerbose, GetBlockHeaderVerboseError, GetBlockStats,
GetBlockStatsError, GetBlockTemplate, GetBlockTemplateError, GetBlockVerboseOne,
GetBlockVerboseOneError, GetBlockVerboseZero, GetBlockchainInfo, GetBlockchainInfoError,
GetChainTips, GetChainTxStats, GetChainTxStatsError, GetConnectionCount, GetDifficulty,
GetMemoryInfoStats, GetMempoolAncestors, GetMempoolAncestorsVerbose, GetMempoolDescendants,
GetMempoolDescendantsVerbose, GetMempoolEntry, GetMempoolInfo, GetMempoolInfoError,
GetMiningInfo, GetNetTotals, GetNetworkInfo, GetNetworkInfoAddress, GetNetworkInfoError,
GetNetworkInfoNetwork, GetNewAddress, GetPeerInfo, GetRawChangeAddress, GetRawMempool,
GetRawMempoolVerbose, GetRawTransaction, GetRawTransactionVerbose,
GetRawTransactionVerboseError, GetReceivedByAddress, GetTransaction, GetTransactionDetail,
GetTransactionDetailError, GetTransactionError, GetTxOut, GetTxOutError, GetTxOutSetInfo,
GetTxOutSetInfoError, GetUnconfirmedBalance, GetWalletInfo, GetWalletInfoError,
GetZmqNotifications, ListAddressGroupings, ListAddressGroupingsError, ListAddressGroupingsItem,
ListBanned, ListLabels, ListLockUnspent, ListLockUnspentItem, ListLockUnspentItemError,
AbortRescan, AddMultisigAddress, AddMultisigAddressError, AddedNode, AddedNodeAddress,
AddressInformation, Banned, Bip32Deriv, Bip9Softfork, Bip9SoftforkStatus, BumpFee,
BumpFeeError, ChainTips, ChainTipsError, ChainTipsStatus, CombinePsbt, CombineRawTransaction,
ConvertToPsbt, CreateMultisig, CreateMultisigError, CreatePsbt, CreateRawTransaction,
CreateWallet, DecodePsbt, DecodePsbtError, DecodeRawTransaction, DecodeScript,
DecodeScriptError, DumpPrivKey, DumpWallet, EstimateSmartFee, FinalizePsbt, FinalizePsbtError,
FundRawTransaction, FundRawTransactionError, Generate, GenerateToAddress, GetAddedNodeInfo,
GetAddressInfo, GetAddressInfoEmbedded, GetAddressInfoEmbeddedError, GetAddressInfoError,
GetAddressInfoLabel, GetAddressesByLabel, GetBalance, GetBestBlockHash, GetBlockCount,
GetBlockHash, GetBlockHeader, GetBlockHeaderError, GetBlockHeaderVerbose,
GetBlockHeaderVerboseError, GetBlockStats, GetBlockStatsError, GetBlockTemplate,
GetBlockTemplateError, GetBlockVerboseOne, GetBlockVerboseOneError, GetBlockVerboseZero,
GetBlockchainInfo, GetBlockchainInfoError, GetChainTips, GetChainTxStats, GetChainTxStatsError,
GetConnectionCount, GetDifficulty, GetMemoryInfoStats, GetMempoolAncestors,
GetMempoolAncestorsVerbose, GetMempoolDescendants, GetMempoolDescendantsVerbose,
GetMempoolEntry, GetMempoolInfo, GetMempoolInfoError, GetMiningInfo, GetNetTotals,
GetNetworkInfo, GetNetworkInfoAddress, GetNetworkInfoError, GetNetworkInfoNetwork,
GetNewAddress, GetPeerInfo, GetRawChangeAddress, GetRawMempool, GetRawMempoolVerbose,
GetRawTransaction, GetRawTransactionVerbose, GetRawTransactionVerboseError,
GetReceivedByAddress, GetTransaction, GetTransactionDetail, GetTransactionDetailError,
GetTransactionError, GetTxOut, GetTxOutError, GetTxOutSetInfo, GetTxOutSetInfoError,
GetUnconfirmedBalance, GetWalletInfo, GetWalletInfoError, GetZmqNotifications,
ListAddressGroupings, ListAddressGroupingsError, ListAddressGroupingsItem, ListBanned,
ListLabels, ListLockUnspent, ListLockUnspentItem, ListLockUnspentItemError,
ListReceivedByAddress, ListReceivedByAddressError, ListReceivedByAddressItem, ListSinceBlock,
ListSinceBlockError, ListSinceBlockTransaction, ListSinceBlockTransactionError,
ListTransactions, ListTransactionsItem, ListTransactionsItemError, ListUnspentItemError,
Expand Down
44 changes: 22 additions & 22 deletions types/src/v19/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@
//! | JSON-RPC Method Name | Returns | Notes |
//! |:-----------------------------------|:---------------:|:--------------------------------------:|
//! | abandontransaction | returns nothing | |
//! | abortrescan | returns nothing | |
//! | abortrescan | version | |
//! | addmultisigaddress | version + model | UNTESTED |
//! | backupwallet | returns nothing | |
//! | bumpfee | version + model | |
Expand Down Expand Up @@ -243,27 +243,27 @@ pub use self::{
};
#[doc(inline)]
pub use crate::v17::{
AddMultisigAddress, AddMultisigAddressError, AddedNode, AddedNodeAddress, AddressInformation,
Banned, BumpFee, BumpFeeError, ChainTips, ChainTipsError, ChainTipsStatus, CombinePsbt,
CombineRawTransaction, ConvertToPsbt, CreateMultisig, CreateMultisigError, CreatePsbt,
CreateRawTransaction, CreateWallet, DecodePsbt, DecodePsbtError, DecodeRawTransaction,
DecodeScript, DecodeScriptError, DumpPrivKey, DumpWallet, EstimateSmartFee, FinalizePsbt,
FinalizePsbtError, FundRawTransaction, FundRawTransactionError, Generate, GenerateToAddress,
GetAddedNodeInfo, GetAddressInfo, GetAddressInfoEmbedded, GetAddressInfoEmbeddedError,
GetAddressInfoError, GetAddressInfoLabel, GetAddressesByLabel, GetBalance, GetBestBlockHash,
GetBlockCount, GetBlockHash, GetBlockHeader, GetBlockHeaderError, GetBlockHeaderVerbose,
GetBlockHeaderVerboseError, GetBlockStats, GetBlockStatsError, GetBlockTemplate,
GetBlockTemplateError, GetBlockVerboseOne, GetBlockVerboseOneError, GetBlockVerboseZero,
GetChainTips, GetChainTxStats, GetChainTxStatsError, GetConnectionCount, GetDifficulty,
GetMemoryInfoStats, GetMempoolInfo, GetMempoolInfoError, GetMiningInfo, GetNetTotals,
GetNetworkInfo, GetNetworkInfoAddress, GetNetworkInfoError, GetNetworkInfoNetwork,
GetNewAddress, GetPeerInfo, GetRawChangeAddress, GetRawMempool, GetRawMempoolVerbose,
GetRawTransaction, GetRawTransactionVerbose, GetRawTransactionVerboseError,
GetReceivedByAddress, GetTransaction, GetTransactionDetail, GetTransactionDetailError,
GetTransactionError, GetTxOut, GetTxOutError, GetTxOutSetInfo, GetTxOutSetInfoError,
GetUnconfirmedBalance, GetWalletInfo, GetWalletInfoError, GetZmqNotifications,
ListAddressGroupings, ListAddressGroupingsError, ListAddressGroupingsItem, ListBanned,
ListLabels, ListLockUnspent, ListLockUnspentItem, ListLockUnspentItemError,
AbortRescan, AddMultisigAddress, AddMultisigAddressError, AddedNode, AddedNodeAddress,
AddressInformation, Banned, BumpFee, BumpFeeError, ChainTips, ChainTipsError, ChainTipsStatus,
CombinePsbt, CombineRawTransaction, ConvertToPsbt, CreateMultisig, CreateMultisigError,
CreatePsbt, CreateRawTransaction, CreateWallet, DecodePsbt, DecodePsbtError,
DecodeRawTransaction, DecodeScript, DecodeScriptError, DumpPrivKey, DumpWallet,
EstimateSmartFee, FinalizePsbt, FinalizePsbtError, FundRawTransaction, FundRawTransactionError,
Generate, GenerateToAddress, GetAddedNodeInfo, GetAddressInfo, GetAddressInfoEmbedded,
GetAddressInfoEmbeddedError, GetAddressInfoError, GetAddressInfoLabel, GetAddressesByLabel,
GetBalance, GetBestBlockHash, GetBlockCount, GetBlockHash, GetBlockHeader, GetBlockHeaderError,
GetBlockHeaderVerbose, GetBlockHeaderVerboseError, GetBlockStats, GetBlockStatsError,
GetBlockTemplate, GetBlockTemplateError, GetBlockVerboseOne, GetBlockVerboseOneError,
GetBlockVerboseZero, GetChainTips, GetChainTxStats, GetChainTxStatsError, GetConnectionCount,
GetDifficulty, GetMemoryInfoStats, GetMempoolInfo, GetMempoolInfoError, GetMiningInfo,
GetNetTotals, GetNetworkInfo, GetNetworkInfoAddress, GetNetworkInfoError,
GetNetworkInfoNetwork, GetNewAddress, GetPeerInfo, GetRawChangeAddress, GetRawMempool,
GetRawMempoolVerbose, GetRawTransaction, GetRawTransactionVerbose,
GetRawTransactionVerboseError, GetReceivedByAddress, GetTransaction, GetTransactionDetail,
GetTransactionDetailError, GetTransactionError, GetTxOut, GetTxOutError, GetTxOutSetInfo,
GetTxOutSetInfoError, GetUnconfirmedBalance, GetWalletInfo, GetWalletInfoError,
GetZmqNotifications, ListAddressGroupings, ListAddressGroupingsError, ListAddressGroupingsItem,
ListBanned, ListLabels, ListLockUnspent, ListLockUnspentItem, ListLockUnspentItemError,
ListReceivedByAddress, ListReceivedByAddressError, ListReceivedByAddressItem, ListSinceBlock,
ListSinceBlockError, ListSinceBlockTransaction, ListSinceBlockTransactionError,
ListTransactions, ListTransactionsItem, ListTransactionsItemError, ListUnspentItemError,
Expand Down
4 changes: 2 additions & 2 deletions types/src/v20/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@
//! | JSON-RPC Method Name | Returns | Notes |
//! |:-----------------------------------|:---------------:|:--------------------------------------:|
//! | abandontransaction | returns nothing | |
//! | abortrescan | returns nothing | |
//! | abortrescan | version | |
//! | addmultisigaddress | version + model | UNTESTED |
//! | backupwallet | returns nothing | |
//! | bumpfee | version + model | |
Expand Down Expand Up @@ -233,7 +233,7 @@ pub use self::control::Logging;
#[doc(inline)]
pub use crate::{
v17::{
AddMultisigAddress, AddMultisigAddressError, AddedNode, AddedNodeAddress,
AbortRescan, AddMultisigAddress, AddMultisigAddressError, AddedNode, AddedNodeAddress,
AddressInformation, Banned, BumpFee, BumpFeeError, ChainTips, ChainTipsError,
ChainTipsStatus, CombinePsbt, CombineRawTransaction, ConvertToPsbt, CreateMultisig,
CreateMultisigError, CreatePsbt, CreateRawTransaction, CreateWallet, DecodePsbt,
Expand Down
Loading