core/vm: go formatting tests

This commit is contained in:
Martin Holst Swende 2018-10-02 13:40:03 +02:00
parent cc28a29365
commit 880f6981a5
No known key found for this signature in database
GPG key ID: 683B438C05A5DDF0
2 changed files with 3 additions and 2 deletions

View file

@ -17,8 +17,9 @@
package vm package vm
import ( import (
"github.com/ethereum/go-ethereum/crypto"
"testing" "testing"
"github.com/ethereum/go-ethereum/crypto"
) )
func TestJumpDestAnalysis(t *testing.T) { func TestJumpDestAnalysis(t *testing.T) {

View file

@ -17,7 +17,6 @@
package runtime package runtime
import ( import (
"github.com/ethereum/go-ethereum/params"
"math/big" "math/big"
"strings" "strings"
"testing" "testing"
@ -27,6 +26,7 @@ import (
"github.com/ethereum/go-ethereum/core/state" "github.com/ethereum/go-ethereum/core/state"
"github.com/ethereum/go-ethereum/core/vm" "github.com/ethereum/go-ethereum/core/vm"
"github.com/ethereum/go-ethereum/ethdb" "github.com/ethereum/go-ethereum/ethdb"
"github.com/ethereum/go-ethereum/params"
) )
func TestDefaults(t *testing.T) { func TestDefaults(t *testing.T) {