public void Stop()
 {
     _update = false;
     this.SaveResources();
     this.StopNodeGroup();
     _connectionparameters = null;
     _wallet = null;
 }
Exemple #2
0
        public override bool Equals(object obj)
        {
            WalletModel compareWallet = obj as WalletModel;

            if ((System.Object)compareWallet == null)
            {
                return(false);
            }

            return((compareWallet.FileLocation == FileLocation) && (compareWallet.Name == Name) && (compareWallet.PassHash == PassHash));
        }
 public WalletConnectModel(WalletModel w)
 {
     _wallet = w;
     StartConnecting();
 }