Skip to content

Commit 73db97e

Browse files
committed
actually include auth list in span batch initialization
1 parent c72fab1 commit 73db97e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

op-node/rollup/derive/span_batch_tx.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,7 @@ func (tx *spanBatchTx) convertToFullTx(nonce, gas uint64, to *common.Address, ch
199199
Value: batchTxInner.Value,
200200
Data: batchTxInner.Data,
201201
AccessList: batchTxInner.AccessList,
202+
AuthList: batchTxInner.AuthList,
202203
V: uint256.MustFromBig(V),
203204
R: uint256.MustFromBig(R),
204205
S: uint256.MustFromBig(S),
@@ -241,6 +242,7 @@ func newSpanBatchTx(tx *types.Transaction) (*spanBatchTx, error) {
241242
Value: uint256.MustFromBig(tx.Value()),
242243
Data: tx.Data(),
243244
AccessList: tx.AccessList(),
245+
AuthList: tx.AuthList(),
244246
}
245247
default:
246248
return nil, fmt.Errorf("invalid tx type: %d", tx.Type())

0 commit comments

Comments
 (0)