mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-23 21:26:42 +00:00
core/txpool/blobpool: update blobpool test for new sidecar version
This commit is contained in:
parent
89f21d2bb3
commit
dd99cf07e4
1 changed files with 3 additions and 3 deletions
|
|
@ -1189,9 +1189,9 @@ func TestBillyMigration(t *testing.T) {
|
||||||
addr2 = crypto.PubkeyToAddress(key2.PublicKey)
|
addr2 = crypto.PubkeyToAddress(key2.PublicKey)
|
||||||
addr3 = crypto.PubkeyToAddress(key3.PublicKey)
|
addr3 = crypto.PubkeyToAddress(key3.PublicKey)
|
||||||
|
|
||||||
tx1 = makeMultiBlobTx(0, 1, 1000, 100, 6, key1)
|
tx1 = makeMultiBlobTx(0, 1, 1000, 100, 6, 0, key1, types.BlobSidecarVersion0)
|
||||||
tx2 = makeMultiBlobTx(0, 1, 800, 70, 6, key2)
|
tx2 = makeMultiBlobTx(0, 1, 800, 70, 6, 0, key2, types.BlobSidecarVersion0)
|
||||||
tx3 = makeMultiBlobTx(0, 1, 800, 110, 24, key3)
|
tx3 = makeMultiBlobTx(0, 1, 800, 110, 24, 0, key3, types.BlobSidecarVersion0)
|
||||||
|
|
||||||
blob1, _ = rlp.EncodeToBytes(tx1)
|
blob1, _ = rlp.EncodeToBytes(tx1)
|
||||||
blob2, _ = rlp.EncodeToBytes(tx2)
|
blob2, _ = rlp.EncodeToBytes(tx2)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue