From 482c2d737a307c45d7133fdd59fb0aafb32540d1 Mon Sep 17 00:00:00 2001 From: Ignacio Hagopian Date: Tue, 27 Aug 2024 08:15:32 -0300 Subject: [PATCH] trie: fix typo Signed-off-by: Ignacio Hagopian --- trie/verkle.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trie/verkle.go b/trie/verkle.go index a535c051d1..d61a167397 100644 --- a/trie/verkle.go +++ b/trie/verkle.go @@ -351,7 +351,7 @@ func ChunkifyCode(code []byte) ChunkedCode { // UpdateContractCode implements state.Trie, writing the provided contract code // into the trie. -// Note that the code-size *must* be already saved by a previuos UpdateAccount call. +// Note that the code-size *must* be already saved by a previous UpdateAccount call. func (t *VerkleTrie) UpdateContractCode(addr common.Address, codeHash common.Hash, code []byte) error { var ( chunks = ChunkifyCode(code)