blk/internal/infrastructure/getblock/errors.go

10 lines
207 B
Go
Raw Normal View History

2024-08-11 01:51:18 +00:00
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")
)