Open means opening the current wallet

This commit is contained in:
Daniel Karzel 2021-03-02 19:35:55 +11:00
parent ab4c98678c
commit 5b798217bc
4 changed files with 9 additions and 7 deletions

View File

@ -165,7 +165,7 @@ async fn init_wallets(
);
// Setup the Monero wallet
let open_wallet_response = monero_wallet.open_wallet(DEFAULT_WALLET_NAME).await;
let open_wallet_response = monero_wallet.open().await;
if open_wallet_response.is_err() {
monero_wallet
.create_wallet(DEFAULT_WALLET_NAME)

View File

@ -293,9 +293,7 @@ async fn init_monero_wallet(
);
// Setup the temporary Monero wallet necessary for monitoring the blockchain
let open_monitoring_wallet_response = monero_wallet
.open_wallet(MONERO_BLOCKCHAIN_MONITORING_WALLET_NAME)
.await;
let open_monitoring_wallet_response = monero_wallet.open().await;
if open_monitoring_wallet_response.is_err() {
monero_wallet
.create_wallet(MONERO_BLOCKCHAIN_MONITORING_WALLET_NAME)

View File

@ -240,7 +240,7 @@ pub trait CreateWalletForOutputThenLoadDefaultWallet {
#[async_trait]
pub trait OpenWallet {
async fn open_wallet(&self, file_name: &str) -> Result<()>;
async fn open(&self) -> Result<()>;
}
#[async_trait]

View File

@ -166,8 +166,12 @@ impl CreateWalletForOutputThenLoadDefaultWallet for Wallet {
#[async_trait]
impl OpenWallet for Wallet {
async fn open_wallet(&self, file_name: &str) -> Result<()> {
self.inner.lock().await.open_wallet(file_name).await?;
async fn open(&self) -> Result<()> {
self.inner
.lock()
.await
.open_wallet(self.default_wallet_name.as_str())
.await?;
Ok(())
}
}