aboutsummaryrefslogtreecommitdiffstats
path: root/ethstate/errors.go
diff options
context:
space:
mode:
authorzelig <viktor.tron@gmail.com>2014-07-31 00:03:20 +0800
committerzelig <viktor.tron@gmail.com>2014-07-31 00:03:20 +0800
commit9831619881c5264c2449ce1b906108d892b6e1e1 (patch)
treef8775b1196fe6b31081a553945377f40bdc8d550 /ethstate/errors.go
parent194c58858cd230a9a08b0eb14650720341a5580e (diff)
parent42d47ecfb09ac0b419db5722602d9b02e21f2457 (diff)
downloaddexon-9831619881c5264c2449ce1b906108d892b6e1e1.tar
dexon-9831619881c5264c2449ce1b906108d892b6e1e1.tar.gz
dexon-9831619881c5264c2449ce1b906108d892b6e1e1.tar.bz2
dexon-9831619881c5264c2449ce1b906108d892b6e1e1.tar.lz
dexon-9831619881c5264c2449ce1b906108d892b6e1e1.tar.xz
dexon-9831619881c5264c2449ce1b906108d892b6e1e1.tar.zst
dexon-9831619881c5264c2449ce1b906108d892b6e1e1.zip
merge upstream
Diffstat (limited to 'ethstate/errors.go')
-rw-r--r--ethstate/errors.go23
1 files changed, 23 insertions, 0 deletions
diff --git a/ethstate/errors.go b/ethstate/errors.go
new file mode 100644
index 000000000..d5d7db86b
--- /dev/null
+++ b/ethstate/errors.go
@@ -0,0 +1,23 @@
+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}
+}