-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Open
Labels
C-forgeCommand: forgeCommand: forgeCmd-forge-scriptCommand: forge scriptCommand: forge scriptfirst issueA good way to start contributingA good way to start contributing
Description
Component
Forge
Describe the feature you would like
foundry/crates/wallets/src/multi_wallet.rs
Lines 369 to 375 in 398ef4a
pub async fn trezors(&self) -> Result<Option<Vec<WalletSigner>>> { | |
if self.trezor { | |
create_hw_wallets!(self, utils::create_trezor_signer, wallets); | |
return Ok(Some(wallets)); | |
} | |
Ok(None) | |
} |
Currently, every new instance of TrezorSigner
is created with their own session_id
. If a passphrase is enabled on the device, it means requesting it for every mnemonic index.
Ideally, each TrezorSigner
reuses the first created session_id
.
Additional context
No response
Metadata
Metadata
Assignees
Labels
C-forgeCommand: forgeCommand: forgeCmd-forge-scriptCommand: forge scriptCommand: forge scriptfirst issueA good way to start contributingA good way to start contributing
Type
Projects
Status
Todo