Skip to content

Commit 17e5859

Browse files
committed
rebase
1 parent f389fe5 commit 17e5859

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

Diff for: go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ replace (
356356
github.com/cosmos/cosmos-sdk => github.com/sei-protocol/sei-cosmos v0.3.55
357357
github.com/cosmos/iavl => github.com/sei-protocol/sei-iavl v0.2.0
358358
github.com/cosmos/ibc-go/v3 => github.com/sei-protocol/sei-ibc-go/v3 v3.3.5
359-
github.com/ethereum/go-ethereum => github.com/sei-protocol/go-ethereum-tmp v1.15.0-sei-8
359+
github.com/ethereum/go-ethereum => github.com/sei-protocol/go-ethereum-tmp v1.15.0-sei-10
360360
github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1
361361
github.com/sei-protocol/sei-db => github.com/sei-protocol/sei-db v0.0.47
362362
// Latest goleveldb is broken, we have to stick to this version

Diff for: go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -2009,8 +2009,8 @@ github.com/seccomp/libseccomp-golang v0.9.2-0.20220502022130-f33da4d89646/go.mod
20092009
github.com/securego/gosec/v2 v2.11.0 h1:+PDkpzR41OI2jrw1q6AdXZCbsNGNGT7pQjal0H0cArI=
20102010
github.com/securego/gosec/v2 v2.11.0/go.mod h1:SX8bptShuG8reGC0XS09+a4H2BoWSJi+fscA+Pulbpo=
20112011
github.com/segmentio/fasthash v1.0.3/go.mod h1:waKX8l2N8yckOgmSsXJi7x1ZfdKZ4x7KRMzBtS3oedY=
2012-
github.com/sei-protocol/go-ethereum-tmp v1.15.0-sei-8 h1:6/ifU4GeBw1noThbLHl1tDD15osKWU/GFrL0gfAsM8E=
2013-
github.com/sei-protocol/go-ethereum-tmp v1.15.0-sei-8/go.mod h1:4q+4t48P2C03sjqGvTXix5lEOplf5dz4CTosbjt5tGs=
2012+
github.com/sei-protocol/go-ethereum-tmp v1.15.0-sei-10 h1:VTFTe3oL+pSQ89DrOH1CE+l9dnPN6kWK2uxCvLQlJn0=
2013+
github.com/sei-protocol/go-ethereum-tmp v1.15.0-sei-10/go.mod h1:4q+4t48P2C03sjqGvTXix5lEOplf5dz4CTosbjt5tGs=
20142014
github.com/sei-protocol/goutils v0.0.2 h1:Bfa7Sv+4CVLNM20QcpvGb81B8C5HkQC/kW1CQpIbXDA=
20152015
github.com/sei-protocol/goutils v0.0.2/go.mod h1:iYE2DuJfEnM+APPehr2gOUXfuLuPsVxorcDO+Tzq9q8=
20162016
github.com/sei-protocol/sei-cosmos v0.3.55 h1:wDWLcKdKN87eWTVHhRbPcR9Fuy2D9bmmCro6GgaU3SE=

Diff for: x/evm/types/ethtx/auth_list.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ func NewAuthList(ethAuthList *[]ethtypes.SetCodeAuthorization) AuthList {
3131
}
3232

3333
func (al AuthList) ToEthAuthList() *[]ethtypes.SetCodeAuthorization {
34-
var ethAuthList []ethtypes.SetCodeAuthorization
34+
ethAuthList := make([]ethtypes.SetCodeAuthorization, len(al))
3535

3636
for _, auth := range al {
3737
chainId := new(uint256.Int)

Diff for: x/evm/types/ethtx/set_code_tx.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@ package ethtx
33
import (
44
"errors"
55
"fmt"
6+
"math/big"
7+
68
sdk "github.com/cosmos/cosmos-sdk/types"
79
"github.com/ethereum/go-ethereum/common"
810
ethtypes "github.com/ethereum/go-ethereum/core/types"
911
"github.com/holiman/uint256"
10-
"math/big"
1112
)
1213

1314
func NewSetCodeTx(tx *ethtypes.Transaction) (*SetCodeTx, error) {

0 commit comments

Comments
 (0)