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

@@ -473,7 +473,7 @@ func TestWithdrawFiat(t *testing.T) {
t.Skip("API keys set, canManipulateRealOrders false, skipping test")
}
var withdrawFiatRequest = withdraw.FiatWithdrawRequest{
var withdrawFiatRequest = withdraw.FiatRequest{
GenericInfo: withdraw.GenericInfo{
Amount: -1,
Currency: currency.USD,
@@ -507,7 +507,7 @@ func TestWithdrawInternationalBank(t *testing.T) {
t.Skip("API keys set, canManipulateRealOrders false, skipping test")
}
var withdrawFiatRequest = withdraw.FiatWithdrawRequest{}
var withdrawFiatRequest = withdraw.FiatRequest{}
_, err := b.WithdrawFiatFundsToInternationalBank(&withdrawFiatRequest)
if err != common.ErrFunctionNotSupported {
t.Errorf("Expected '%v', received: '%v'", common.ErrFunctionNotSupported, err)