From 5f4774b9e5907505bdc201d714d09d063bd9f9aa Mon Sep 17 00:00:00 2001 From: wit Date: Sat, 13 Dec 2025 10:08:45 +0800 Subject: [PATCH] core/state: fix typo in `CreateContract` --- core/state/statedb_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/state/statedb_test.go b/core/state/statedb_test.go index 661d17bb7b..d623664ca8 100644 --- a/core/state/statedb_test.go +++ b/core/state/statedb_test.go @@ -401,7 +401,7 @@ func newTestAction(addr common.Address, r *rand.Rand) testAction { // We also set some code here, to prevent the // CreateContract action from being performed twice in a row, // which would cause a difference in state when unrolling - // the journal. (CreateContact assumes created was false prior to + // the journal. (CreateContract assumes created was false prior to // invocation, and the journal rollback sets it to false). s.SetCode(addr, []byte{1}, tracing.CodeChangeUnspecified) }