File tree 4 files changed +6
-5
lines changed
4 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -356,7 +356,7 @@ replace (
356
356
github.com/cosmos/cosmos-sdk => github.com/sei-protocol/sei-cosmos v0.3.55
357
357
github.com/cosmos/iavl => github.com/sei-protocol/sei-iavl v0.2.0
358
358
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
360
360
github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1
361
361
github.com/sei-protocol/sei-db => github.com/sei-protocol/sei-db v0.0.47
362
362
// Latest goleveldb is broken, we have to stick to this version
Original file line number Diff line number Diff line change @@ -2009,8 +2009,8 @@ github.com/seccomp/libseccomp-golang v0.9.2-0.20220502022130-f33da4d89646/go.mod
2009
2009
github.com/securego/gosec/v2 v2.11.0 h1:+PDkpzR41OI2jrw1q6AdXZCbsNGNGT7pQjal0H0cArI =
2010
2010
github.com/securego/gosec/v2 v2.11.0 /go.mod h1:SX8bptShuG8reGC0XS09+a4H2BoWSJi+fscA+Pulbpo =
2011
2011
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 =
2014
2014
github.com/sei-protocol/goutils v0.0.2 h1:Bfa7Sv+4CVLNM20QcpvGb81B8C5HkQC/kW1CQpIbXDA =
2015
2015
github.com/sei-protocol/goutils v0.0.2 /go.mod h1:iYE2DuJfEnM+APPehr2gOUXfuLuPsVxorcDO+Tzq9q8 =
2016
2016
github.com/sei-protocol/sei-cosmos v0.3.55 h1:wDWLcKdKN87eWTVHhRbPcR9Fuy2D9bmmCro6GgaU3SE =
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ func NewAuthList(ethAuthList *[]ethtypes.SetCodeAuthorization) AuthList {
31
31
}
32
32
33
33
func (al AuthList ) ToEthAuthList () * []ethtypes.SetCodeAuthorization {
34
- var ethAuthList []ethtypes.SetCodeAuthorization
34
+ ethAuthList := make ( []ethtypes.SetCodeAuthorization , len ( al ))
35
35
36
36
for _ , auth := range al {
37
37
chainId := new (uint256.Int )
Original file line number Diff line number Diff line change @@ -3,11 +3,12 @@ package ethtx
3
3
import (
4
4
"errors"
5
5
"fmt"
6
+ "math/big"
7
+
6
8
sdk "github.com/cosmos/cosmos-sdk/types"
7
9
"github.com/ethereum/go-ethereum/common"
8
10
ethtypes "github.com/ethereum/go-ethereum/core/types"
9
11
"github.com/holiman/uint256"
10
- "math/big"
11
12
)
12
13
13
14
func NewSetCodeTx (tx * ethtypes.Transaction ) (* SetCodeTx , error ) {
You can’t perform that action at this time.
0 commit comments