Skip to content

Commit 0dd3e0f

Browse files
committed
update dependency
1 parent f5f37e1 commit 0dd3e0f

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ require (
277277
rsc.io/tmplfunc v0.0.3 // indirect
278278
)
279279

280-
replace github.com/ethereum/go-ethereum v1.13.15 => github.com/krish-nr/op-geth v0.2.2-rc.1.0.20241226015808-4d92fe224340
280+
replace github.com/ethereum/go-ethereum v1.13.15 => github.com/bnb-chain/op-geth v1.101315.2-0.0.20250211105604-4938993c410b
281281

282282
replace github.com/cometbft/cometbft => github.com/bnb-chain/greenfield-cometbft v1.0.0
283283

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,8 @@ github.com/bnb-chain/fastssz v0.1.2 h1:vTcXw5SwCtRYnl/BEclujiml7GXiVOZ74tub4GHpv
184184
github.com/bnb-chain/fastssz v0.1.2/go.mod h1:KcabV+OEw2QwgyY8Fc88ZG79CKYkFdu0kKWyfA3dI6o=
185185
github.com/bnb-chain/greenfield-cometbft v1.0.0 h1:0r6hOJWD/+es0gxP/exKuN/krgXAr3LCn5/XlcgDWr8=
186186
github.com/bnb-chain/greenfield-cometbft v1.0.0/go.mod h1:f35mk/r5ab6yvzlqEWZt68LfUje68sYgMpVlt2CUYMk=
187+
github.com/bnb-chain/op-geth v1.101315.2-0.0.20250211105604-4938993c410b h1:41ofqQekH7zhnU8auIg/ylopKCGuPCqXjitFVQhK4rg=
188+
github.com/bnb-chain/op-geth v1.101315.2-0.0.20250211105604-4938993c410b/go.mod h1:hyHrrcHkUe3lRwfJs+JGrbOHp+pRdheRk+ren4TPhF8=
187189
github.com/boltdb/bolt v1.3.1 h1:JQmyP4ZBrce+ZQu0dY660FMfatumYDLun9hBCUVIkF4=
188190
github.com/boltdb/bolt v1.3.1/go.mod h1:clJnj/oiGkjum5o1McbSZDSLxVThjynRyGBgiAx27Ps=
189191
github.com/bradfitz/go-smtpd v0.0.0-20170404230938-deb6d6237625/go.mod h1:HYsPBTaaSFSlLx/70C2HPIMNZpVV8+vt/A+FMnYP11g=
@@ -931,8 +933,6 @@ github.com/kr/pty v1.1.8/go.mod h1:O1sed60cT9XZ5uDucP5qwvh+TE3NnUj51EiZO/lmSfw=
931933
github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
932934
github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
933935
github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
934-
github.com/krish-nr/op-geth v0.2.2-rc.1.0.20241226015808-4d92fe224340 h1:ez7r25x9QqapSj3ohHDdm7EqjqJINMR2//tUSZMeP3g=
935-
github.com/krish-nr/op-geth v0.2.2-rc.1.0.20241226015808-4d92fe224340/go.mod h1:hyHrrcHkUe3lRwfJs+JGrbOHp+pRdheRk+ren4TPhF8=
936936
github.com/kylelemons/godebug v1.1.0 h1:RPNrshWIDI6G2gRW9EHilWtl7Z6Sb1BR0xunSBf0SNc=
937937
github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+fNqagV/RAw=
938938
github.com/labstack/echo/v4 v4.2.1/go.mod h1:AA49e0DZ8kk5jTOOCKNuPR6oTnBS0dYiM4FW1e6jwpg=

op-node/rollup/derive/span_batch_tx.go

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,12 @@ type spanBatchDynamicFeeTxData struct {
4747
func (txData *spanBatchDynamicFeeTxData) txType() byte { return types.DynamicFeeTxType }
4848

4949
type spanBatchSetCodeTxData struct {
50-
Value *big.Int // wei amount
51-
GasTipCap *big.Int // maxPriorityFeePerGas (EIP-1559)
52-
GasFeeCap *big.Int // maxFeePerGas (EIP-1559)
53-
Data []byte // contract invocation input data
54-
AccessList types.AccessList // EIP-2930 access list
55-
AuthList []types.Authorization // EIP-7702 authorization list
50+
Value *big.Int // wei amount
51+
GasTipCap *big.Int // maxPriorityFeePerGas (EIP-1559)
52+
GasFeeCap *big.Int // maxFeePerGas (EIP-1559)
53+
Data []byte // contract invocation input data
54+
AccessList types.AccessList // EIP-2930 access list
55+
AuthList []types.SetCodeAuthorization // EIP-7702 authorization list
5656
}
5757

5858
func (txData *spanBatchSetCodeTxData) txType() byte { return types.SetCodeTxType }
@@ -190,7 +190,7 @@ func (tx *spanBatchTx) convertToFullTx(nonce, gas uint64, to *common.Address, ch
190190
case types.SetCodeTxType:
191191
batchTxInner := tx.inner.(*spanBatchSetCodeTxData)
192192
inner = &types.SetCodeTx{
193-
ChainID: chainID.Uint64(),
193+
ChainID: uint256.MustFromBig(chainID),
194194
Nonce: nonce,
195195
GasTipCap: uint256.MustFromBig(batchTxInner.GasTipCap),
196196
GasFeeCap: uint256.MustFromBig(batchTxInner.GasFeeCap),
@@ -242,7 +242,7 @@ func newSpanBatchTx(tx types.Transaction) (*spanBatchTx, error) {
242242
Value: tx.Value(),
243243
Data: tx.Data(),
244244
AccessList: tx.AccessList(),
245-
AuthList: tx.AuthList(),
245+
AuthList: tx.SetCodeAuthorizations(),
246246
}
247247

248248
default:

0 commit comments

Comments
 (0)