Ejemplo n.º 1
0
 public void AccountDeleteCommand(UInt160 scriptHash)
 {
     _walletManager.DeleteAccount(scriptHash);
 }
Ejemplo n.º 2
0
 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.");
 }