コード例 #1
0
 public void AccountDeleteCommand(UInt160 scriptHash)
 {
     _walletManager.DeleteAccount(scriptHash);
 }
コード例 #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.");
 }