Skip to content

Commit 61e85ed

Browse files
committed
Fixed imports
1 parent 3776ba7 commit 61e85ed

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

core/vm/contracts.go

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,21 +19,18 @@ package vm
1919
import (
2020
"crypto/sha256"
2121
"encoding/binary"
22-
//Needed for SHA3-256 FIPS202
23-
"encoding/hex"
22+
"encoding/hex" //Needed for SHA3-256 FIPS202
2423
"errors"
2524
"fmt"
2625
"math/big"
2726

28-
"github.com/ethereum/go-ethereum/crypto/blake2b"
29-
3027
"github.com/ethereum/go-ethereum/common"
3128
"github.com/ethereum/go-ethereum/common/math"
3229
"github.com/ethereum/go-ethereum/crypto"
30+
"github.com/ethereum/go-ethereum/crypto/blake2b"
3331
"github.com/ethereum/go-ethereum/crypto/bn256"
3432
"github.com/harmony-one/harmony/internal/params"
3533
"golang.org/x/crypto/ripemd160"
36-
3734
"golang.org/x/crypto/sha3"
3835
)
3936

0 commit comments

Comments
 (0)