mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
ignore the RAM usage
This commit is contained in:
parent
aadcb88675
commit
540feb498e
1 changed files with 7 additions and 7 deletions
|
|
@ -48,13 +48,13 @@ type DataError interface {
|
||||||
// Error types defined below are the built-in JSON-RPC errors.
|
// Error types defined below are the built-in JSON-RPC errors.
|
||||||
|
|
||||||
var (
|
var (
|
||||||
_ Error = new(methodNotFoundError)
|
_ Error = (*methodNotFoundError)(nil)
|
||||||
_ Error = new(subscriptionNotFoundError)
|
_ Error = (*subscriptionNotFoundError)(nil)
|
||||||
_ Error = new(parseError)
|
_ Error = (*parseError)(nil)
|
||||||
_ Error = new(invalidRequestError)
|
_ Error = (*invalidRequestError)(nil)
|
||||||
_ Error = new(invalidMessageError)
|
_ Error = (*invalidMessageError)(nil)
|
||||||
_ Error = new(invalidParamsError)
|
_ Error = (*invalidParamsError)(nil)
|
||||||
_ Error = new(internalServerError)
|
_ Error = (*internalServerError)(nil)
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue