From 55eb1619229401d2a24b6ee1389013173640673d Mon Sep 17 00:00:00 2001 From: Jared Wasinger Date: Fri, 8 Mar 2024 05:33:27 -0800 Subject: [PATCH] remove character --- core/state/statedb.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/state/statedb.go b/core/state/statedb.go index 18febe2181..7e326d803d 100644 --- a/core/state/statedb.go +++ b/core/state/statedb.go @@ -896,7 +896,7 @@ func (s *StateDB) IntermediateRoot(deleteEmptyObjects bool) common.Hash { } usedAddrs := make([][]byte, 0, len(s.stateObjectsPending)) // Perform updates before deletions. This prevents resolution of unnecessary trie nodes - // in circumstances similar to the following:s + // in circumstances similar to the following: // // Take value nodes 1, 2 who share the same full node parent 3 and have no other siblings. // 1 self-destructs specifying a non-existing recipient account which would be a child of 3.