private void btnWithdrawAlt_Click(object sender, EventArgs e) { SimpleSwap tmp = new SimpleSwap(ExchangeType.withdraw, CurrentSite.Currency); tmp.Withdraw += Tmp_Withdraw; tmp.Show(); }
private void btnDepositAlt_Click(object sender, EventArgs e) { SimpleSwap tmp = new SimpleSwap(ExchangeType.deposit, CurrentSite.Currency, txtApiAddress.Text); tmp.Show(); }