We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3776ba7 commit 61e85edCopy full SHA for 61e85ed
core/vm/contracts.go
@@ -19,21 +19,18 @@ package vm
19
import (
20
"crypto/sha256"
21
"encoding/binary"
22
- //Needed for SHA3-256 FIPS202
23
- "encoding/hex"
+ "encoding/hex" //Needed for SHA3-256 FIPS202
24
"errors"
25
"fmt"
26
"math/big"
27
28
- "github.com/ethereum/go-ethereum/crypto/blake2b"
29
-
30
"github.com/ethereum/go-ethereum/common"
31
"github.com/ethereum/go-ethereum/common/math"
32
"github.com/ethereum/go-ethereum/crypto"
+ "github.com/ethereum/go-ethereum/crypto/blake2b"
33
"github.com/ethereum/go-ethereum/crypto/bn256"
34
"github.com/harmony-one/harmony/internal/params"
35
"golang.org/x/crypto/ripemd160"
36
37
"golang.org/x/crypto/sha3"
38
)
39
0 commit comments