Skip to content

Commit

Permalink
Missed account rename
Browse files Browse the repository at this point in the history
  • Loading branch information
thibault-martinez committed Nov 20, 2023
1 parent e4f8a39 commit 85df48c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions sdk/src/wallet/operations/syncing/addresses/output_ids/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ where
tasks.push(
async {
let bech32_address = address.clone();
let account = self.clone();
let wallet = self.clone();
tokio::spawn(async move {
account
wallet
.get_basic_output_ids_with_any_unlock_condition(bech32_address)
.await
})
Expand All @@ -108,9 +108,9 @@ where
tasks.push(
async {
let bech32_address = address.clone();
let account = self.clone();
let wallet = self.clone();
tokio::spawn(async move {
account
wallet
.get_nft_output_ids_with_any_unlock_condition(bech32_address)
.await
})
Expand Down Expand Up @@ -140,9 +140,9 @@ where
async {
let bech32_address = address.clone();
let sync_options = sync_options.clone();
let account = self.clone();
let wallet = self.clone();
tokio::spawn(async move {
account
wallet
.get_account_and_foundry_output_ids(bech32_address, &sync_options)
.await
})
Expand Down

0 comments on commit 85df48c

Please sign in to comment.