diff options
Diffstat (limited to 'ethstate/errors.go')
-rw-r--r-- | ethstate/errors.go | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/ethstate/errors.go b/ethstate/errors.go deleted file mode 100644 index d5d7db86b..000000000 --- a/ethstate/errors.go +++ /dev/null @@ -1,23 +0,0 @@ -package ethstate - -import ( - "fmt" - "math/big" -) - -type GasLimitErr struct { - Message string - Is, Max *big.Int -} - -func IsGasLimitErr(err error) bool { - _, ok := err.(*GasLimitErr) - - return ok -} -func (err *GasLimitErr) Error() string { - return err.Message -} -func GasLimitError(is, max *big.Int) *GasLimitErr { - return &GasLimitErr{Message: fmt.Sprintf("GasLimit error. Max %s, transaction would take it to %s", max, is), Is: is, Max: max} -} |