Skip to content

Commit 1026999

Browse files
[Automated changes] GO files
1 parent 3c4c346 commit 1026999

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

107 files changed

+6817
-6817
lines changed

go/ccxt/ace.go

+22-22
Original file line numberDiff line numberDiff line change
@@ -379,8 +379,8 @@ func (this *ace) FetchTicker(symbol interface{}, optionalArgs ...interface{}) <
379379
params := GetArg(optionalArgs, 0, map[string]interface{} {})
380380
_ = params
381381

382-
retRes337086 := (<-this.LoadMarkets())
383-
PanicOnError(retRes337086)
382+
retRes824444 := (<-this.LoadMarkets())
383+
PanicOnError(retRes824444)
384384
var market interface{} = this.Market(symbol)
385385

386386
response:= (<-this.PublicGetOapiV2ListTradePrice(params))
@@ -422,8 +422,8 @@ func (this *ace) FetchTickers(optionalArgs ...interface{}) <- chan interface{}
422422
params := GetArg(optionalArgs, 1, map[string]interface{} {})
423423
_ = params
424424

425-
retRes599589 := (<-this.LoadMarkets())
426-
PanicOnError(retRes599589)
425+
retRes793217 := (<-this.LoadMarkets())
426+
PanicOnError(retRes793217)
427427

428428
response:= (<-this.PublicGetOapiV2ListTradePrice())
429429
PanicOnError(response)
@@ -472,8 +472,8 @@ func (this *ace) FetchOrderBook(symbol interface{}, optionalArgs ...interface{}
472472
params := GetArg(optionalArgs, 1, map[string]interface{} {})
473473
_ = params
474474

475-
retRes960042 := (<-this.LoadMarkets())
476-
PanicOnError(retRes960042)
475+
retRes437359 := (<-this.LoadMarkets())
476+
PanicOnError(retRes437359)
477477
var market interface{} = this.Market(symbol)
478478
var request interface{} = map[string]interface{} {
479479
"quoteCurrencyId": GetValue(market, "quoteId"),
@@ -580,8 +580,8 @@ func (this *ace) FetchOHLCV(symbol interface{}, optionalArgs ...interface{}) <-
580580
params := GetArg(optionalArgs, 3, map[string]interface{} {})
581581
_ = params
582582

583-
retRes771802 := (<-this.LoadMarkets())
584-
PanicOnError(retRes771802)
583+
retRes447345 := (<-this.LoadMarkets())
584+
PanicOnError(retRes447345)
585585
var market interface{} = this.Market(symbol)
586586
var request interface{} = map[string]interface{} {
587587
"duration": GetValue(this.Timeframes, timeframe),
@@ -752,8 +752,8 @@ func (this *ace) CreateOrder(symbol interface{}, typeVar interface{}, side inte
752752
params := GetArg(optionalArgs, 1, map[string]interface{} {})
753753
_ = params
754754

755-
retRes251694 := (<-this.LoadMarkets())
756-
PanicOnError(retRes251694)
755+
retRes398044 := (<-this.LoadMarkets())
756+
PanicOnError(retRes398044)
757757
var market interface{} = this.Market(symbol)
758758
var orderType interface{} = ToUpper(typeVar)
759759
var orderSide interface{} = ToUpper(side)
@@ -806,8 +806,8 @@ func (this *ace) CancelOrder(id interface{}, optionalArgs ...interface{}) <- ch
806806
params := GetArg(optionalArgs, 1, map[string]interface{} {})
807807
_ = params
808808

809-
retRes985368 := (<-this.LoadMarkets())
810-
PanicOnError(retRes985368)
809+
retRes129383 := (<-this.LoadMarkets())
810+
PanicOnError(retRes129383)
811811
var request interface{} = map[string]interface{} {
812812
"orderNo": id,
813813
}
@@ -849,8 +849,8 @@ func (this *ace) FetchOrder(id interface{}, optionalArgs ...interface{}) <- cha
849849
params := GetArg(optionalArgs, 1, map[string]interface{} {})
850850
_ = params
851851

852-
retRes827106 := (<-this.LoadMarkets())
853-
PanicOnError(retRes827106)
852+
retRes69713 := (<-this.LoadMarkets())
853+
PanicOnError(retRes69713)
854854
var request interface{} = map[string]interface{} {
855855
"orderNo": id,
856856
}
@@ -915,8 +915,8 @@ func (this *ace) FetchOpenOrders(optionalArgs ...interface{}) <- chan interface
915915
panic(ArgumentsRequired(Add(this.Id, " fetchOpenOrders() requires a symbol argument")))
916916
}
917917

918-
retRes258726 := (<-this.LoadMarkets())
919-
PanicOnError(retRes258726)
918+
retRes752715 := (<-this.LoadMarkets())
919+
PanicOnError(retRes752715)
920920
var market interface{} = this.Market(symbol)
921921
var request interface{} = map[string]interface{} {
922922
"quoteCurrencyId": GetValue(market, "quoteId"),
@@ -1072,8 +1072,8 @@ func (this *ace) FetchOrderTrades(id interface{}, optionalArgs ...interface{})
10721072
params := GetArg(optionalArgs, 3, map[string]interface{} {})
10731073
_ = params
10741074

1075-
retRes714038 := (<-this.LoadMarkets())
1076-
PanicOnError(retRes714038)
1075+
retRes920717 := (<-this.LoadMarkets())
1076+
PanicOnError(retRes920717)
10771077
var market interface{} = this.SafeMarket(symbol)
10781078
var request interface{} = map[string]interface{} {
10791079
"orderNo": id,
@@ -1148,8 +1148,8 @@ func (this *ace) FetchMyTrades(optionalArgs ...interface{}) <- chan interface{}
11481148
params := GetArg(optionalArgs, 3, map[string]interface{} {})
11491149
_ = params
11501150

1151-
retRes737407 := (<-this.LoadMarkets())
1152-
PanicOnError(retRes737407)
1151+
retRes672506 := (<-this.LoadMarkets())
1152+
PanicOnError(retRes672506)
11531153
var market interface{} = this.SafeMarket(symbol)
11541154
var request interface{} = map[string]interface{} {}
11551155
if IsTrue(!IsEqual(GetValue(market, "id"), nil)) {
@@ -1245,8 +1245,8 @@ func (this *ace) FetchBalance(optionalArgs ...interface{}) <- chan interface{}
12451245
params := GetArg(optionalArgs, 0, map[string]interface{} {})
12461246
_ = params
12471247

1248-
retRes234754 := (<-this.LoadMarkets())
1249-
PanicOnError(retRes234754)
1248+
retRes486969 := (<-this.LoadMarkets())
1249+
PanicOnError(retRes486969)
12501250

12511251
response:= (<-this.PrivatePostV2CoinCustomerAccount(params))
12521252
PanicOnError(response)

0 commit comments

Comments
 (0)