removed withdraw from struct name:

This commit is contained in:
Andrew Jackson
2019-12-13 08:36:07 +11:00
parent b8e8c25f78
commit 9178dbcc61
59 changed files with 117 additions and 117 deletions

View File

@@ -179,11 +179,11 @@ func testWrappers(e exchange.IBotExchange) []string {
funcs = append(funcs, "WithdrawCryptocurrencyFunds")
}
_, err = e.WithdrawFiatFunds(&withdraw.FiatWithdrawRequest{})
_, err = e.WithdrawFiatFunds(&withdraw.FiatRequest{})
if err == common.ErrNotYetImplemented {
funcs = append(funcs, "WithdrawFiatFunds")
}
_, err = e.WithdrawFiatFundsToInternationalBank(&withdraw.FiatWithdrawRequest{})
_, err = e.WithdrawFiatFundsToInternationalBank(&withdraw.FiatRequest{})
if err == common.ErrNotYetImplemented {
funcs = append(funcs, "WithdrawFiatFundsToInternationalBank")
}