Skip to content

Commit 0ea6dab

Browse files
committed
styling
1 parent 32e6456 commit 0ea6dab

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

node/src/wallets.rs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ use wallet::{
2727
wallet::tx_builder::TxOrdering,
2828
KeychainKind, LocalOutput,
2929
},
30-
bitcoin::{self,Address, Amount, FeeRate, OutPoint},
30+
bitcoin::{self, Address, Amount, FeeRate, OutPoint},
3131
builder::{
3232
CoinTransfer, SelectionOutput, SpaceTransfer, SpacesAwareCoinSelection, TransactionTag,
3333
TransferRequest,
@@ -943,12 +943,6 @@ impl RpcWallet {
943943
resp_rx.await?
944944
}
945945

946-
pub async fn send_list_spaces(&self) -> anyhow::Result<Vec<WalletOutput>> {
947-
let (resp, resp_rx) = oneshot::channel();
948-
self.sender.send(WalletCommand::ListSpaces { resp }).await?;
949-
resp_rx.await?
950-
}
951-
952946
pub async fn send_force_spend(
953947
&self,
954948
outpoint: OutPoint,
@@ -965,6 +959,12 @@ impl RpcWallet {
965959
resp_rx.await?
966960
}
967961

962+
pub async fn send_list_spaces(&self) -> anyhow::Result<Vec<WalletOutput>> {
963+
let (resp, resp_rx) = oneshot::channel();
964+
self.sender.send(WalletCommand::ListSpaces { resp }).await?;
965+
resp_rx.await?
966+
}
967+
968968
pub async fn send_list_bidouts(&self) -> anyhow::Result<Vec<DoubleUtxo>> {
969969
let (resp, resp_rx) = oneshot::channel();
970970
self.sender

0 commit comments

Comments
 (0)