mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-22 14:55:16 +00:00
fix(ftx): typo
This commit is contained in:
parent
1318f221b2
commit
bee3b913f2
|
@ -61,7 +61,7 @@ type loginArgs struct {
|
|||
SubAccount string `json:"subaccount"`
|
||||
}
|
||||
|
||||
func newLoginRequest(key, secret string, t time.Time, subsaccount string) websocketRequest {
|
||||
func newLoginRequest(key, secret string, t time.Time, subaccount string) websocketRequest {
|
||||
millis := t.UnixNano() / int64(time.Millisecond)
|
||||
return websocketRequest{
|
||||
Operation: login,
|
||||
|
@ -69,7 +69,7 @@ func newLoginRequest(key, secret string, t time.Time, subsaccount string) websoc
|
|||
Key: key,
|
||||
Signature: sign(secret, loginBody(millis)),
|
||||
Time: millis,
|
||||
SubAccount: subsaccount,
|
||||
SubAccount: subaccount,
|
||||
},
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user