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.
|
||||
|
||||
var (
|
||||
_ Error = new(methodNotFoundError)
|
||||
_ Error = new(subscriptionNotFoundError)
|
||||
_ Error = new(parseError)
|
||||
_ Error = new(invalidRequestError)
|
||||
_ Error = new(invalidMessageError)
|
||||
_ Error = new(invalidParamsError)
|
||||
_ Error = new(internalServerError)
|
||||
_ Error = (*methodNotFoundError)(nil)
|
||||
_ Error = (*subscriptionNotFoundError)(nil)
|
||||
_ Error = (*parseError)(nil)
|
||||
_ Error = (*invalidRequestError)(nil)
|
||||
_ Error = (*invalidMessageError)(nil)
|
||||
_ Error = (*invalidParamsError)(nil)
|
||||
_ Error = (*internalServerError)(nil)
|
||||
)
|
||||
|
||||
const (
|
||||
|
|
|
|||
Loading…
Reference in a new issue