public void AccountDeleteCommand(UInt160 scriptHash) { _walletManager.DeleteAccount(scriptHash); }
public void AccountDeleteCommand(string address) { //Should we ask for a confirmation? Should we ask for the password? _walletManager.DeleteAccount(address.ToScriptHash()); _consoleHandler.WriteLine("Account deleted."); }