From 7bcad694ae11fbae608801fdac7ddb9a39c0e294 Mon Sep 17 00:00:00 2001 From: benderrobert <bendertherobert@gmail.com> Date: Thu, 19 Sep 2024 05:22:32 +0100 Subject: [PATCH] guide: fix conception key word (#11958) Sorry, I missed updating the keyword in the last update. https://github.com/erigontech/erigon/pull/11754 --- docs/programmers_guide/guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/programmers_guide/guide.md b/docs/programmers_guide/guide.md index 1ad0e5f8fe9..a21749fdc80 100644 --- a/docs/programmers_guide/guide.md +++ b/docs/programmers_guide/guide.md @@ -429,7 +429,7 @@ efficiently, the set of keys being resolved will be converted into a sorted list processes a key, it maintains references to two consecutive keys from that sorted list - one "LTE" (Less Than or Equal to the currently processed key), and another "GT" (Greater Than the currently processed key). If max common prefix is also prefix of either LTE or GT, then `BRANCH` opcode is emitted, otherwise, `BRANCHHASH` opcode is emitted. This is -implemented by the type `RetainList` in [turbo/trie/resolve_set.go](../../turbo/trie/retain_list.go) +implemented by the type `RetainList` in [turbo/trie/retain_list.go](../../turbo/trie/retain_list.go) ### Extension of the structure to support contracts with contract storage