diff options
author | obscuren <geffobscura@gmail.com> | 2015-03-24 22:15:17 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-03-24 22:15:17 +0800 |
commit | 23bccbbc587aa22057eb7ae29c5b87d44b7cac7d (patch) | |
tree | 70e03dcff049ebbca32dc34c53881cf6b9e20a7c /core/vm | |
parent | bbe795455a13c57dbba64c1082b618e791af46ce (diff) | |
download | go-tangerine-23bccbbc587aa22057eb7ae29c5b87d44b7cac7d.tar.gz go-tangerine-23bccbbc587aa22057eb7ae29c5b87d44b7cac7d.tar.zst go-tangerine-23bccbbc587aa22057eb7ae29c5b87d44b7cac7d.zip |
Modified according to poc 9 changes
* Refund of value
Diffstat (limited to 'core/vm')
-rw-r--r-- | core/vm/environment.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/vm/environment.go b/core/vm/environment.go index a0a18a99b..6c5202185 100644 --- a/core/vm/environment.go +++ b/core/vm/environment.go @@ -7,8 +7,8 @@ import ( "math/big" "github.com/ethereum/go-ethereum/common" - "github.com/ethereum/go-ethereum/rlp" "github.com/ethereum/go-ethereum/core/state" + "github.com/ethereum/go-ethereum/rlp" ) type Environment interface { |