We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a27cb6c commit 66ce0c5Copy full SHA for 66ce0c5
swap/src/monero/wallet.rs
@@ -93,7 +93,8 @@ impl Wallet {
93
94
/// Re-open the internally stored wallet from it's file.
95
pub async fn re_open(&self) -> Result<()> {
96
- self.inner.open_wallet(self.name.clone()).await?;
+ self.open(self.name.clone()).await?;
97
+
98
Ok(())
99
}
100
@@ -203,7 +204,7 @@ impl Wallet {
203
204
205
206
- let _ = self.inner.open_wallet(self.name.clone()).await?;
207
208
209
210
0 commit comments