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

@ -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]