Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
badgersrus committed Dec 19, 2024
1 parent adabc5e commit 11f92b5
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion go/common/l1_transaction.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@ package common
import (
"crypto/ecdsa"
"fmt"
"math/big"

gethcommon "github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/crypto/kzg4844"
"math/big"
)

// L1TenTransaction is an abstraction that transforms an Ethereum transaction into a format that can be consumed more
Expand Down
3 changes: 2 additions & 1 deletion go/ethadapter/erc20contractlib/erc20_contract_lib.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
package erc20contractlib

import (
"github.com/ten-protocol/go-ten/go/common"
"math/big"
"strings"

"github.com/ten-protocol/go-ten/go/common"

"github.com/ethereum/go-ethereum/accounts/abi"
gethcommon "github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"
Expand Down
1 change: 1 addition & 0 deletions integration/ethereummock/mgmt_contract_lib.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import (
"bytes"
"encoding/gob"
"fmt"

"github.com/ten-protocol/go-ten/go/common"

"github.com/ten-protocol/go-ten/go/host/l1"
Expand Down
2 changes: 1 addition & 1 deletion integration/smartcontract/debug_mgmt_contract_lib.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ func (d *debugMgmtContractLib) AwaitedIssueRollup(rollup common.ExtRollup, clien
if err != nil {
return err
}
txData, err := d.CreateBlobRollup(&ethadapter.L1RollupTx{Rollup: encodedRollup})
txData, err := d.CreateBlobRollup(&common.L1RollupTx{Rollup: encodedRollup})
if err != nil {
return fmt.Errorf("failed to create blob rollup: %w", err)
}
Expand Down

0 comments on commit 11f92b5

Please sign in to comment.