Skip to content

Commit 272c1c1

Browse files
committed
do nothing if wallet is loaded
1 parent 015fc83 commit 272c1c1

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

node/src/rpc.rs

+3
Original file line numberDiff line numberDiff line change
@@ -465,6 +465,9 @@ impl WalletManager {
465465
}
466466

467467
pub async fn load_wallet(&self, name: &str) -> anyhow::Result<()> {
468+
if self.wallets.read().await.contains_key(name) {
469+
return Ok(());
470+
}
468471
let wallet_dir = self.data_dir.join(name);
469472
if !wallet_dir.exists() {
470473
return Err(anyhow!("Wallet does not exist"));

0 commit comments

Comments
 (0)