aboutsummaryrefslogtreecommitdiffstats
path: root/core/state/errors.go
diff options
context:
space:
mode:
Diffstat (limited to 'core/state/errors.go')
-rw-r--r--core/state/errors.go23
1 files changed, 23 insertions, 0 deletions
diff --git a/core/state/errors.go b/core/state/errors.go
new file mode 100644
index 000000000..5a847d38b
--- /dev/null
+++ b/core/state/errors.go
@@ -0,0 +1,23 @@
+package state
+
+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}
+}