Skip to content

Commit

Permalink
Merge pull request #41 from kroma-network/chore/sort-import-statements
Browse files Browse the repository at this point in the history
chore: sort import statements
  • Loading branch information
0xHansLee authored Apr 26, 2023
2 parents ca09e32 + a6ac0dd commit 2e2b17e
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
3 changes: 2 additions & 1 deletion bindings/ast/canonicalize_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@ import (
"path"
"testing"

"github.com/kroma-network/kroma/bindings/solc"
"github.com/stretchr/testify/require"

"github.com/kroma-network/kroma/bindings/solc"
)

type astIDTest struct {
Expand Down
4 changes: 2 additions & 2 deletions bindings/hardhat/hardhat_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ package hardhat_test
import (
"testing"

"github.com/kroma-network/kroma/bindings/hardhat"

"github.com/stretchr/testify/require"

"github.com/kroma-network/kroma/bindings/hardhat"
)

func TestGetFullyQualifiedName(t *testing.T) {
Expand Down
1 change: 1 addition & 0 deletions bindings/hardhat/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import (
"github.com/ethereum/go-ethereum/accounts/abi"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common/hexutil"

"github.com/kroma-network/kroma/bindings/solc"
)

Expand Down
3 changes: 2 additions & 1 deletion bindings/predeploys/addresses_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@ import (

"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"
"github.com/kroma-network/kroma/bindings/bindings"
"github.com/stretchr/testify/require"

"github.com/kroma-network/kroma/bindings/bindings"
)

func TestGethAddresses(t *testing.T) {
Expand Down
1 change: 0 additions & 1 deletion components/node/eth/account_proof.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import (
"github.com/ethereum/go-ethereum/ethdb/memorydb"
"github.com/ethereum/go-ethereum/rlp"
"github.com/ethereum/go-ethereum/trie"

zktrie "github.com/kroma-network/zktrie/trie"
zkt "github.com/kroma-network/zktrie/types"
)
Expand Down
3 changes: 1 addition & 2 deletions components/node/eth/ssz_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,9 @@ import (
"math"
"testing"

"github.com/ethereum/go-ethereum/common"
"github.com/google/go-cmp/cmp"
"github.com/stretchr/testify/require"

"github.com/ethereum/go-ethereum/common"
)

// FuzzExecutionPayloadUnmarshal checks that our SSZ decoding never panics
Expand Down
3 changes: 1 addition & 2 deletions components/node/p2p/rpc_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,9 @@ import (
"net"
"time"

"github.com/ethereum/go-ethereum/p2p/enode"
"github.com/libp2p/go-libp2p/core/network"
"github.com/libp2p/go-libp2p/core/peer"

"github.com/ethereum/go-ethereum/p2p/enode"
)

type PeerInfo struct {
Expand Down
3 changes: 2 additions & 1 deletion components/node/rollup/derive/frame_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@ import (
"testing"
"time"

"github.com/kroma-network/kroma/components/node/testutils"
"github.com/stretchr/testify/require"

"github.com/kroma-network/kroma/components/node/testutils"
)

func FuzzFrameUnmarshalBinary(f *testing.F) {
Expand Down
1 change: 0 additions & 1 deletion components/node/withdrawals/proof.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import (
"github.com/ethereum/go-ethereum/crypto/poseidon"
"github.com/ethereum/go-ethereum/ethclient/gethclient"
"github.com/ethereum/go-ethereum/trie"

zktrie "github.com/kroma-network/zktrie/trie"
zkt "github.com/kroma-network/zktrie/types"
)
Expand Down

0 comments on commit 2e2b17e

Please sign in to comment.