We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4c4456 commit 90a831cCopy full SHA for 90a831c
bitvavo.go
@@ -653,7 +653,7 @@ func updateRateLimit(response http.Header) {
653
if key == "Bitvavo-Ratelimit-Remaining" {
654
rateLimitRemaining, _ = strconv.Atoi(value[0])
655
}
656
- if key == "Bitvavo-Ratelimit-Resetat" {
+ if key == "Bitvavo-Ratelimit-ResetAt" {
657
rateLimitReset, _ = strconv.Atoi(value[0])
658
now := int(time.Nanosecond * time.Duration(time.Now().UnixNano()) / time.Millisecond)
659
var timeToWait = rateLimitReset - now
0 commit comments