Skip to content

Commit 7c59c8c

Browse files
fix: as many typos as possible (#16029)
* fix: as many typos as possible * fix: even more typos
1 parent 84e767a commit 7c59c8c

File tree

77 files changed

+135
-135
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+135
-135
lines changed

cannon/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ cannon64-impl:
2424
env GO111MODULE=on GOOS=$(TARGETOS) GOARCH=$(TARGETARCH) go build -v $(LDFLAGS) -o ./bin/cannon64-impl .
2525

2626
# Note: This target is used by ./scripts/build-legacy-cannons.sh
27-
# It should build the individual versions of cannons and copy them into place in hte multicannon/embeds directory
27+
# It should build the individual versions of cannons and copy them into place in the multicannon/embeds directory
2828
# Ideally, preserve backwards compatibility with this behaviour but if it needs to change, build-legacy-cannons.sh will
2929
# need to be updated to account for different behaviours in different versions.
3030
# Each embed is suffixed with the latest `StateVersion` number corresponding to the target VM and architecture.

cannon/mipsevm/tests/fuzz_evm_multithreaded_test.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@ func FuzzStateSyscallCloneMT(f *testing.F) {
4646
expected.PrestateActiveThread().Registers[7] = 0
4747
// Set expectations for new, cloned thread
4848
expected.ActiveThreadId = nextThreadId
49-
epxectedNewThread := expected.ExpectNewThread()
50-
epxectedNewThread.PC = state.GetCpu().NextPC
51-
epxectedNewThread.NextPC = state.GetCpu().NextPC + 4
52-
epxectedNewThread.Registers[register.RegSyscallNum] = 0
53-
epxectedNewThread.Registers[register.RegSyscallErrno] = 0
54-
epxectedNewThread.Registers[register.RegSP] = stackPtr
49+
expectedNewThread := expected.ExpectNewThread()
50+
expectedNewThread.PC = state.GetCpu().NextPC
51+
expectedNewThread.NextPC = state.GetCpu().NextPC + 4
52+
expectedNewThread.Registers[register.RegSyscallNum] = 0
53+
expectedNewThread.Registers[register.RegSyscallErrno] = 0
54+
expectedNewThread.Registers[register.RegSP] = stackPtr
5555
expected.NextThreadId = nextThreadId + 1
5656
expected.StepsSinceLastContextSwitch = 0
5757
if state.TraverseRight {

cannon/mipsevm/testutil/arch.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ func RandomizeWordAndSetUint32(mem *memory.Memory, addr Word, val uint32, random
5757
exec.StoreSubWord(mem, addr, 4, Word(val), new(exec.NoopMemoryTracker))
5858
}
5959

60-
// ToSignedInteger converts the unsigend Word to a SignedInteger.
60+
// ToSignedInteger converts the unsigned Word to a SignedInteger.
6161
// Useful for avoiding Go compiler warnings for literals that don't fit in a signed type
6262
func ToSignedInteger(x Word) arch.SignedInteger {
6363
return arch.SignedInteger(x)

devnet-sdk/book/src/dsl/style_guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Required inputs to methods are specified as normal parameters, so type checking
6969

7070
Optional inputs to methods are specified by a config struct and accept a vararg of functions that can update that struct.
7171
This is roughly inline with the typical opts pattern in Golang but with significantly reduced boilerplate code since
72-
so many methods wil define their own config. With* methods are only provided for the most common optional args and
72+
so many methods will define their own config. With* methods are only provided for the most common optional args and
7373
tests will normally supply a custom function that sets all the optional values they need at once.
7474

7575
## Logging

devnet-sdk/system/periphery/go-ethereum/fees_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ func TestMultiplyBigInt(t *testing.T) {
4949
}
5050

5151
for _, testCase := range testCases {
52-
t.Run(fmt.Sprintf("should return %d for %d multplied by %f", testCase.expected.Int64(), testCase.value.Int64(), testCase.multiplier), func(t *testing.T) {
52+
t.Run(fmt.Sprintf("should return %d for %d multiplied by %f", testCase.expected.Int64(), testCase.value.Int64(), testCase.multiplier), func(t *testing.T) {
5353
result := multiplyBigInt(testCase.value, testCase.multiplier)
5454
require.Equal(t, testCase.expected, result)
5555
})
@@ -114,7 +114,7 @@ func TestEstimateEIP1559Fees(t *testing.T) {
114114
})
115115

116116
t.Run("with custom tip multiplier", func(t *testing.T) {
117-
t.Run("should set the GasTipCap to the client's suggested tip cap multplied by the tip multiplier", func(t *testing.T) {
117+
t.Run("should set the GasTipCap to the client's suggested tip cap multiplied by the tip multiplier", func(t *testing.T) {
118118
tipCapValue := big.NewInt(5)
119119
tipMultiplier := 10.0
120120
// The expected tip is a product of the tip cap and the tip multiplier
@@ -210,7 +210,7 @@ func TestEstimateEIP1559Fees(t *testing.T) {
210210
})
211211

212212
t.Run("with custom base multiplier", func(t *testing.T) {
213-
t.Run("should set the GasFeeCap to the block base fee multplied by the base multiplier", func(t *testing.T) {
213+
t.Run("should set the GasFeeCap to the block base fee multiplied by the base multiplier", func(t *testing.T) {
214214
baseMultiplier := 1.2
215215
baseFeeValue := big.NewInt(9)
216216
blockValue := types.NewBlock(&types.Header{

docs/handbook/pr-guidelines.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ This is organized by current state of PR, so it can be easily referenced frequen
3535
- **Guide PR reviewers:** Let them know about areas of concern, under-tested areas, or vague requirements that should be ironed out.
3636

3737
### Triggering CI on PRs from external forks
38-
If the PR is from an external fork, our CI suite will not automatically run on the PR. A reviewer with sufficient permissions (e.g. the automatically assigened reviewer) needs to comment on the PR wih
38+
If the PR is from an external fork, our CI suite will not automatically run on the PR. A reviewer with sufficient permissions (e.g. the automatically assigened reviewer) needs to comment on the PR with
3939

4040
> /ci authorize COMMITHASH
4141

kurtosis-devnet/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ interop-devnet: (devnet "interop.yaml")
9898
## devnet output
9999

100100
One important aspect of the devnet workflow is that the output should be
101-
*consumable*. Going forward we want to integrate them into larger worfklows
101+
*consumable*. Going forward we want to integrate them into larger workflows
102102
(serving as targets for tests for example, or any other form of automation).
103103

104104
To address this, the deployment tool outputs a document with (hopefully!) useful
@@ -156,7 +156,7 @@ In particular, cleaning up a devnet can be achieved using
156156

157157
### Autofix mode
158158

159-
Autofix mode helps recover from failed devnet deployments by automatically
159+
Autofix mode helps recover from failed devnet deployments by automatically
160160
cleaning up the environment. It has two modes:
161161

162162
1. **Normal Mode** (`AUTOFIX=true`)
@@ -189,7 +189,7 @@ older kurtosis engine. This typically happens if the kurtosis
189189
command-line managed by mise gets updated while some enclaves are
190190
already running.
191191

192-
To help recover, you can either run with `AUTOFIX=nuke` or kill the
192+
To help recover, you can either run with `AUTOFIX=nuke` or kill the
193193
old engine with:
194194

195195
```shell

op-acceptance-tests/tests/interop/interop_tx_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ func messagePassingScenario(sourceChainIdx, destChainIdx uint64, sourceWalletGet
9191
ChainId: chainA.ID(),
9292
}
9393

94-
SatisfyExecMsgContraint(t, logger, sys, identifier.BlockNumber.Uint64(), identifier.Timestamp.Uint64())
94+
SatisfyExecMsgConstraint(t, logger, sys, identifier.BlockNumber.Uint64(), identifier.Timestamp.Uint64())
9595

9696
// Execute message
9797
logger.Info("Execute message", "address", sha256PrecompileAddr, "message", dummyMessage)
@@ -138,11 +138,11 @@ func TestMessagePassing(t *testing.T) {
138138
sourceChainIdx := uint64(0)
139139
destChainIdx := uint64(1)
140140
sourceWalletGetter, sourcefundsValidator := validators.AcquireL2WalletWithFunds(sourceChainIdx, sdktypes.NewBalance(big.NewInt(1.0*constants.ETH)))
141-
destWalletGetter, destfundsValiator := validators.AcquireL2WalletWithFunds(destChainIdx, sdktypes.NewBalance(big.NewInt(1.0*constants.ETH)))
141+
destWalletGetter, destfundsValidator := validators.AcquireL2WalletWithFunds(destChainIdx, sdktypes.NewBalance(big.NewInt(1.0*constants.ETH)))
142142

143143
systest.InteropSystemTest(t,
144144
messagePassingScenario(sourceChainIdx, destChainIdx, sourceWalletGetter, destWalletGetter),
145145
sourcefundsValidator,
146-
destfundsValiator,
146+
destfundsValidator,
147147
)
148148
}

op-acceptance-tests/tests/interop/interop_txplan_test.go

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ import (
2424
"github.com/stretchr/testify/require"
2525
)
2626

27-
// SatisfyExecMsgContraint waits supervisor to index initiating message,
27+
// SatisfyExecMsgConstraint waits supervisor to index initiating message,
2828
// and destination chain has advanced enough to satisfy messaging time invariant.
29-
func SatisfyExecMsgContraint(t systest.T, logger log.Logger, sys system.InteropSystem, initBlockNum uint64, initTimestamp uint64) {
29+
func SatisfyExecMsgConstraint(t systest.T, logger log.Logger, sys system.InteropSystem, initBlockNum uint64, initTimestamp uint64) {
3030
ctx := t.Context()
3131

3232
supervisor, err := sys.Supervisor(ctx)
@@ -78,7 +78,7 @@ func initAndExecMsg(
7878
blockA, err := txA.PlannedTx.IncludedBlock.Eval(ctx)
7979
require.NoError(t, err)
8080
// wait for supervisor and destination chain be in sync
81-
SatisfyExecMsgContraint(t, logger, sys, blockA.Number, blockA.Time)
81+
SatisfyExecMsgConstraint(t, logger, sys, blockA.Number, blockA.Time)
8282

8383
// Intent to validate message on chain B
8484
txB := txintent.NewIntent[*txintent.ExecTrigger, *txintent.InteropOutput](opts[1])
@@ -125,7 +125,7 @@ func initAndExecMultipleMsg(
125125
blockA, err := txA.PlannedTx.IncludedBlock.Eval(ctx)
126126
require.NoError(t, err)
127127
// wait for supervisor and destination chain be in sync
128-
SatisfyExecMsgContraint(t, logger, sys, blockA.Number, blockA.Time)
128+
SatisfyExecMsgConstraint(t, logger, sys, blockA.Number, blockA.Time)
129129

130130
// Intent to validate messages on chain B
131131
txB := txintent.NewIntent[*txintent.MultiTrigger, *txintent.InteropOutput](opts[1])
@@ -169,7 +169,7 @@ func execSameMsgTwice(
169169
blockA, err := txA.PlannedTx.IncludedBlock.Eval(ctx)
170170
require.NoError(t, err)
171171
// wait for supervisor and destination chain be in sync
172-
SatisfyExecMsgContraint(t, logger, sys, blockA.Number, blockA.Time)
172+
SatisfyExecMsgConstraint(t, logger, sys, blockA.Number, blockA.Time)
173173

174174
// Intent to validate same message two times on chain B
175175
txB := txintent.NewIntent[*txintent.MultiTrigger, *txintent.InteropOutput](opts[1])
@@ -200,7 +200,7 @@ func execMsgDifferentTopicCount(
200200
eventLoggerAddress, err := DeployEventLogger(ctx, wallets[0], logger)
201201
require.NoError(t, err)
202202

203-
// Intent to initiate message with differet topic counts on chain A
203+
// Intent to initiate message with different topic counts on chain A
204204
initCalls := make([]txintent.Call, 5)
205205
for topicCnt := range 5 {
206206
index := topicCnt
@@ -223,7 +223,7 @@ func execMsgDifferentTopicCount(
223223
blockA, err := txA.PlannedTx.IncludedBlock.Eval(ctx)
224224
require.NoError(t, err)
225225
// wait for supervisor and destination chain be in sync
226-
SatisfyExecMsgContraint(t, logger, sys, blockA.Number, blockA.Time)
226+
SatisfyExecMsgConstraint(t, logger, sys, blockA.Number, blockA.Time)
227227

228228
// Intent to validate message on chain B
229229
txB := txintent.NewIntent[*txintent.MultiTrigger, *txintent.InteropOutput](opts[1])
@@ -242,9 +242,9 @@ func execMsgDifferentTopicCount(
242242
}
243243
}
244244

245-
// execMsgOpagueData tests below scenario:
245+
// execMsgOpaqueData tests below scenario:
246246
// Execute message that links with initiating message with: 0, 10KB of opaque event data in it
247-
func execMsgOpagueData(
247+
func execMsgOpaqueData(
248248
l2ChainNums int,
249249
walletGetters []validators.WalletGetter,
250250
) systest.InteropSystemTestFunc {
@@ -275,7 +275,7 @@ func execMsgOpagueData(
275275
blockA, err := txA.PlannedTx.IncludedBlock.Eval(ctx)
276276
require.NoError(t, err)
277277
// wait for supervisor and destination chain be in sync
278-
SatisfyExecMsgContraint(t, logger, sys, blockA.Number, blockA.Time)
278+
SatisfyExecMsgConstraint(t, logger, sys, blockA.Number, blockA.Time)
279279

280280
// Intent to validate messages on chain B
281281
txB := txintent.NewIntent[*txintent.MultiTrigger, *txintent.InteropOutput](opts[1])
@@ -325,7 +325,7 @@ func execMsgDifferEventIndexInSingleTx(
325325
blockA, err := txA.PlannedTx.IncludedBlock.Eval(ctx)
326326
require.NoError(t, err)
327327
// wait for supervisor and destination chain be in sync
328-
SatisfyExecMsgContraint(t, logger, sys, blockA.Number, blockA.Time)
328+
SatisfyExecMsgConstraint(t, logger, sys, blockA.Number, blockA.Time)
329329

330330
// Intent to validate messages on chain B
331331
txB := txintent.NewIntent[*txintent.MultiTrigger, *txintent.InteropOutput](opts[1])
@@ -445,7 +445,7 @@ func executeMessageInvalidAttributes(
445445
blockA, err := txA.PlannedTx.IncludedBlock.Eval(ctx)
446446
require.NoError(t, err)
447447
// wait for supervisor and destination chain be in sync
448-
SatisfyExecMsgContraint(t, logger, sys, blockA.Number, blockA.Time)
448+
SatisfyExecMsgConstraint(t, logger, sys, blockA.Number, blockA.Time)
449449

450450
// construct txplan opts for testing failed validating messages
451451
optsForFail := txplan.Combine(
@@ -497,7 +497,7 @@ func randomDirectedGraph(
497497

498498
// pubSubPairCnt is the count of (publisher, subscriber) pairs which
499499
// - publisher initiates messages
500-
// - subsciber validates messages
500+
// - subscriber validates messages
501501
pubSubPairCnt := 10
502502
// txCnt is the count of transactions that each publisher emits
503503
txCnt := 3
@@ -649,11 +649,11 @@ func TestInteropExecMsgDifferentTopicCount(t *testing.T) {
649649
)
650650
}
651651

652-
func TestInteropExecMsgOpagueData(t *testing.T) {
652+
func TestInteropExecMsgOpaqueData(t *testing.T) {
653653
l2ChainNums := 2
654654
walletGetters, totalValidators := SetupDefaultInteropSystemTest(l2ChainNums)
655655
systest.InteropSystemTest(t,
656-
execMsgOpagueData(l2ChainNums, walletGetters),
656+
execMsgOpaqueData(l2ChainNums, walletGetters),
657657
totalValidators...,
658658
)
659659
}

op-acceptance-tests/tests/interop/message/interop_msg_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ func TestInitExecMsg(gt *testing.T) {
2121
eventLoggerAddress := alice.DeployEventLogger()
2222
// Trigger random init message at chain A
2323
initIntent, _ := alice.SendInitMessage(interop.RandomInitTrigger(rng, eventLoggerAddress, rng.Intn(5), rng.Intn(30)))
24-
// Make sure supervisor indexs block which includes init message
24+
// Make sure supervisor indexes block which includes init message
2525
sys.Supervisor.AdvancedUnsafeHead(alice.ChainID(), 2)
2626
// Single event in tx so index is 0
2727
bob.SendExecMessage(initIntent, 0)

op-acceptance-tests/tests/interop/sync/redundant_interop/interop_sync_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ func TestUnsafeChainKnownToL2CL(gt *testing.T) {
3838
sys.L2CLA.DisconnectPeer(sys.L2CLA2)
3939
sys.L2CLA2.DisconnectPeer(sys.L2CLA)
4040

41-
// For making verifer not sync at all, both unsafe haead and safe head
41+
// For making verifier not sync at all, both unsafe head and safe head
4242
// The sequencer will advance unsafe head and safe head, as well as synced with supervisor.
4343
logger.Info("stop verifier")
4444
sys.L2CLA2.Stop()

op-acceptance-tests/tests/isthmus/preinterop/interop_readiness_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,10 @@ func init() {
6161
}
6262

6363
func TestInteropReadiness(t *testing.T) {
64-
systest.SystemTest(t, interopReadinessTestSenario())
64+
systest.SystemTest(t, interopReadinessTestScenario())
6565
}
6666

67-
func interopReadinessTestSenario() systest.SystemTestFunc {
67+
func interopReadinessTestScenario() systest.SystemTestFunc {
6868
return func(t systest.T, sys system.System) {
6969
logger := testlog.Logger(t, log.LevelInfo)
7070
logger.Info("Started test")

op-batcher/batcher/channel_manager.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ func (s *channelManager) TxData(l1Head eth.BlockID, isPectra bool) (txData, erro
231231
return emptyTxData, err
232232
}
233233
// If the channel has already started being submitted,
234-
// return now and ensure no requeueing happens
234+
// return now and ensure no requeuing happens
235235
if !channel.NoneSubmitted() {
236236
return s.nextTxData(channel)
237237
}

op-batcher/batcher/driver.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ func (l *BatchSubmitter) sendToThrottlingLoop(pendingBytesUpdated chan int64) {
400400
}
401401
}
402402

403-
// trySignal trys to send an emptry struct on the provided channel.
403+
// trySignal tries to send an empty struct on the provided channel.
404404
// It is not blocking, no signal will be sent if the channel is full.
405405
func trySignal(c chan struct{}) {
406406
select {
@@ -715,7 +715,7 @@ func (l *BatchSubmitter) waitNodeSync() error {
715715
}
716716

717717
// publishStateToL1 queues up all pending TxData to be published to the L1, returning when there is no more data to
718-
// queue for publishing or if there was an error queing the data.
718+
// queue for publishing or if there was an error queuing the data.
719719
func (l *BatchSubmitter) publishStateToL1(ctx context.Context, queue *txmgr.Queue[txRef], receiptsCh chan txmgr.TxReceipt[txRef], daGroup *errgroup.Group) {
720720
for {
721721
select {

op-batcher/batcher/driver_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ func TestBatchSubmitter_ThrottlingEndpoints(t *testing.T) {
251251
// Start throttling loop in a goroutine
252252
go bs.throttlingLoop(&wg1, pendingBytesUpdated)
253253

254-
// Simulate block loading by sending perodically on pendingBytesUpdated
254+
// Simulate block loading by sending periodically on pendingBytesUpdated
255255
wg2 := sync.WaitGroup{}
256256
blockLoadingCtx, cancelBlockLoading := context.WithCancel(context.Background())
257257
defer cancelBlockLoading()

op-batcher/batcher/sync_actions.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ func computeSyncActions[T channelStatuser](
6666

6767
safeL2 := newSyncStatus.SafeL2
6868
if preferLocalSafeL2 {
69-
// This is preffered when running interop, but not yet enabled by default.
69+
// This is preferred when running interop, but not yet enabled by default.
7070
safeL2 = newSyncStatus.LocalSafeL2
7171
}
7272

op-chain-ops/script/forking/db.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ type ForkDB struct {
2424

2525
// Reader for read-only access to a known state. All cold reads go through this.
2626
// So the state-DB creates one initially, and then holds on to it.
27-
// The diff will be overlayed on the reader still. To get rid of the diff, it has to be explicitly cleared.
27+
// The diff will be overlaid on the reader still. To get rid of the diff, it has to be explicitly cleared.
2828
// Warning: diffs applied to the original state that the reader wraps will be visible.
2929
// Geth StateDB is meant to be reinitialized after committing state.
3030
func (f *ForkDB) Reader(root common.Hash) (state.Reader, error) {

op-chain-ops/script/script.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ func (h *Host) SetNonce(addr common.Address, nonce uint64) {
452452
h.state.SetNonce(addr, nonce, tracing.NonceChangeUnspecified)
453453
}
454454

455-
// GetNonce returs an account's nonce from state.
455+
// GetNonce returns an account's nonce from state.
456456
func (h *Host) GetNonce(addr common.Address) uint64 {
457457
return h.state.GetNonce(addr)
458458
}

op-challenger/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ The same CLI options as `op-challenger` itself are supported to configure the tr
214214
option allows specifying which prestates to use. The format is `traceType/name/prestateHash` where traceType is the
215215
trace type to use with the prestate (e.g cannon or asterisc-kona), name is an arbitrary name for the prestate to use
216216
when reporting metrics and prestateHash is the hex encoded absolute prestate commitment to use. If name is omitted the
217-
trace type name is used.If the prestateHash is omitted, the absolute prestate hash used for new games on-chain.
217+
trace type name is used. If the prestateHash is omitted, the absolute prestate hash used for new games on-chain is used.
218218

219219
For example to run both the production cannon prestate and a custom
220220
prestate, use `--run cannon,cannon/next-prestate/0x03c1f0d45248190f80430a4c31e24f8108f05f80ff8b16ecb82d20df6b1b43f3`.

op-challenger/game/fault/solver/game_solver_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ func TestMultipleRounds(t *testing.T) {
257257
actor: incorrectAttackLastClaim,
258258
},
259259
{
260-
name: "LinearDefendInorrect",
260+
name: "LinearDefendIncorrect",
261261
actor: incorrectDefendLastClaim,
262262
},
263263
{

op-challenger/game/fault/trace/vm/op_program_server_executor_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ func TestOpProgramFillHostCommand(t *testing.T) {
182182
require.Equal(t, common.Bytes2Hex(val), pairs["--l2.agreed-prestate"])
183183
})
184184

185-
t.Run("WithouDepsetConfig", func(t *testing.T) {
185+
t.Run("WithoutDepsetConfig", func(t *testing.T) {
186186
pairs := oracleCommand(t, log.LvlInfo, func(c *Config, _ *utils.LocalGameInputs) {
187187
c.DepsetConfigPath = ""
188188
})

0 commit comments

Comments
 (0)