blk/internal/infrastructure/getblock/errors.go
2024-08-11 04:52:08 +03:00

10 lines
207 B
Go

package getblock
import "errors"
var (
// ErrorRateLimitExceeded is thrown when
// the number of requests has exceeded the allowed limit
ErrorRateLimitExceeded = errors.New("api rate limit exceeded")
)