aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorFelix Lange <fjl@twurst.com>2015-07-07 11:10:49 +0800
committerFelix Lange <fjl@twurst.com>2015-07-07 20:12:45 +0800
commit4fb28e0dab912854570c6b6b183004f4b3e7ac05 (patch)
treea134341db17cf280e4529533c0eb86fca7e542a9 /core
parentbdae4fd573dbc163bab3d0e2d1a5c457892037cd (diff)
downloadgo-tangerine-4fb28e0dab912854570c6b6b183004f4b3e7ac05.tar
go-tangerine-4fb28e0dab912854570c6b6b183004f4b3e7ac05.tar.gz
go-tangerine-4fb28e0dab912854570c6b6b183004f4b3e7ac05.tar.bz2
go-tangerine-4fb28e0dab912854570c6b6b183004f4b3e7ac05.tar.lz
go-tangerine-4fb28e0dab912854570c6b6b183004f4b3e7ac05.tar.xz
go-tangerine-4fb28e0dab912854570c6b6b183004f4b3e7ac05.tar.zst
go-tangerine-4fb28e0dab912854570c6b6b183004f4b3e7ac05.zip
all: goimports -w
Diffstat (limited to 'core')
-rw-r--r--core/vm/vm_jit.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/core/vm/vm_jit.go b/core/vm/vm_jit.go
index 25e59eaf4..34f45b5f4 100644
--- a/core/vm/vm_jit.go
+++ b/core/vm/vm_jit.go
@@ -34,10 +34,12 @@ import (
"bytes"
"errors"
"fmt"
- "github.com/ethereum/go-ethereum/core/state"
- "github.com/ethereum/go-ethereum/crypto"
"math/big"
"unsafe"
+
+ "github.com/ethereum/go-ethereum/core/state"
+ "github.com/ethereum/go-ethereum/crypto"
+ "github.com/ethereum/go-ethereum/params"
)
type JitVm struct {