Exemplo n.º 1
0
        private void button1_Click(object sender, EventArgs e)
        {
            try
            {
                if (CoinService.IsWalletEncrypted())
                {
                    CoinService.WalletPassphraseChange(passwordOld.Text, passwordNew.Text);
                }
                else
                {
                    CoinService.EncryptWallet(passwordNew.Text);
                }

                Properties.Settings.Default.password = passwordNew.Text;
                Properties.Settings.Default.Save();

                passwordOld.Text = "";
                passwordNew.Text = "";

                MessageBox.Show("Done");
            }
            catch (BitcoinLib.ExceptionHandling.Rpc.RpcInternalServerErrorException exc)
            {
                if (exc.Source != null)
                {
                    MessageBox.Show("1: " + exc.Message);
                }
            }
        }