Skip to content

Commit a6b743d

Browse files
revrted back
1 parent 75b7cd1 commit a6b743d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tap-agent/src/tap/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ pub mod escrow_adapter;
1313
pub mod test_utils;
1414

1515
pub async fn signers_trimmed(
16-
escrow_accounts: Receiver<EscrowAccounts>,
16+
escrow_accounts_rx: Receiver<EscrowAccounts>,
1717
sender: Address,
1818
) -> Result<Vec<String>, anyhow::Error> {
19-
let escrow_accounts = escrow_accounts.borrow();
19+
let escrow_accounts = escrow_accounts_rx.borrow();
2020
let signers = escrow_accounts
2121
.get_signers_for_sender(&sender)
2222
.iter()

0 commit comments

Comments
 (0)