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 75b7cd1 commit a6b743dCopy full SHA for a6b743d
tap-agent/src/tap/mod.rs
@@ -13,10 +13,10 @@ pub mod escrow_adapter;
13
pub mod test_utils;
14
15
pub async fn signers_trimmed(
16
- escrow_accounts: Receiver<EscrowAccounts>,
+ escrow_accounts_rx: Receiver<EscrowAccounts>,
17
sender: Address,
18
) -> Result<Vec<String>, anyhow::Error> {
19
- let escrow_accounts = escrow_accounts.borrow();
+ let escrow_accounts = escrow_accounts_rx.borrow();
20
let signers = escrow_accounts
21
.get_signers_for_sender(&sender)
22
.iter()
0 commit comments