diff options
author | obscuren <geffobscura@gmail.com> | 2014-11-05 01:18:57 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-11-05 01:18:57 +0800 |
commit | 1b1fa049fa483b3996d3582ad247638045657282 (patch) | |
tree | 3a43f6baa5e990410c60df46fcfe5cbcb2e7c894 /chain/error.go | |
parent | 8cfbf1836d68c49242703e3f59e4d0a06754c02b (diff) | |
download | go-tangerine-1b1fa049fa483b3996d3582ad247638045657282.tar.gz go-tangerine-1b1fa049fa483b3996d3582ad247638045657282.tar.zst go-tangerine-1b1fa049fa483b3996d3582ad247638045657282.zip |
Fixed VM and added static analysis for EVM jumps
Diffstat (limited to 'chain/error.go')
-rw-r--r-- | chain/error.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chain/error.go b/chain/error.go index 71bda8e7b..540eda95a 100644 --- a/chain/error.go +++ b/chain/error.go @@ -123,6 +123,6 @@ func (self *TDError) Error() string { return fmt.Sprintf("incoming chain has a lower or equal TD (%v <= %v)", self.a, self.b) } func IsTDError(e error) bool { - _, ok := err.(*TDError) + _, ok := e.(*TDError) return ok } |