Commit d0a79224 authored by EvanJRichard's avatar EvanJRichard

Tweak test message: really we're just testing isCancun, so acknowledge that.

parent 118ce7f4
...@@ -22,7 +22,7 @@ func TestDencunL1Fork(gt *testing.T) { ...@@ -22,7 +22,7 @@ func TestDencunL1Fork(gt *testing.T) {
_, _, miner, sequencer, _, verifier, _, batcher := setupReorgTestActors(t, dp, sd, log) _, _, miner, sequencer, _, verifier, _, batcher := setupReorgTestActors(t, dp, sd, log)
l1Head := miner.l1Chain.CurrentBlock() l1Head := miner.l1Chain.CurrentBlock()
require.False(t, sd.L1Cfg.Config.IsCancun(l1Head.Number, l1Head.Time), "dencun not active yet") // QUESTION: what other arg should be supplied? require.False(t, sd.L1Cfg.Config.IsCancun(l1Head.Number, l1Head.Time), "Cancun not active yet") // QUESTION: what other arg should be supplied?
// start op-nodes // start op-nodes
sequencer.ActL2PipelineFull(t) sequencer.ActL2PipelineFull(t)
...@@ -35,7 +35,7 @@ func TestDencunL1Fork(gt *testing.T) { ...@@ -35,7 +35,7 @@ func TestDencunL1Fork(gt *testing.T) {
// verify Cancun is active // verify Cancun is active
l1Head = miner.l1Chain.CurrentBlock() l1Head = miner.l1Chain.CurrentBlock()
require.True(t, sd.L1Cfg.Config.IsCancun(l1Head.Number, l1Head.Time), "dencun active") require.True(t, sd.L1Cfg.Config.IsCancun(l1Head.Number, l1Head.Time), "Cancun active")
//BEFORE MERGE OF PR #7993: Also, add a few blob txs in as dummy data TODO //BEFORE MERGE OF PR #7993: Also, add a few blob txs in as dummy data TODO
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment