From 4d6739dbb73db00b65e5fa9ca7932db63602541a Mon Sep 17 00:00:00 2001 From: Maxim Evtush <154841002+maximevtush@users.noreply.github.com> Date: Tue, 11 Feb 2025 10:30:26 +0100 Subject: [PATCH 1/2] Update bytecode.rs --- eth-types/src/bytecode.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth-types/src/bytecode.rs b/eth-types/src/bytecode.rs index 36a38b4e4b..d23058c903 100644 --- a/eth-types/src/bytecode.rs +++ b/eth-types/src/bytecode.rs @@ -154,7 +154,7 @@ impl Bytecode { self } - /// Generate the diassembly + /// Generate the disassembly pub fn disasm(&self) -> String { let mut asm = String::new(); for op in self.iter() { From 0e5e0cdc9d1d92790f72cd886eb87b289ee9aab6 Mon Sep 17 00:00:00 2001 From: Maxim Evtush <154841002+maximevtush@users.noreply.github.com> Date: Tue, 11 Feb 2025 10:30:56 +0100 Subject: [PATCH 2/2] Update MPT_Circuit.md --- docs/MPT_Circuit.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/MPT_Circuit.md b/docs/MPT_Circuit.md index a83fef4785..f761f60bd0 100644 --- a/docs/MPT_Circuit.md +++ b/docs/MPT_Circuit.md @@ -205,13 +205,13 @@ This can correspond to the topological configuration change on the whole path in #### PathType::ExtensionNew -`PathType::ExtensionNew` refers to the situation that the new path extends the old path in its toplogical configuration. +`PathType::ExtensionNew` refers to the situation that the new path extends the old path in its topological configuration. This can correspond to the extended part of the path in insert to append, insert to fill operations. #### PathType::ExtensionOld -`PathType::ExtensionOld` refers to the situation that the old path extends the new path in its toplogical configuration. +`PathType::ExtensionOld` refers to the situation that the old path extends the new path in its topological configuration. This can correspond to the extended part of the path in delete from append, delete from fill operations.