From 4ea0f6e4641e77c64a2247b120acd7ee1abed19f Mon Sep 17 00:00:00 2001 From: Yin Guanhao Date: Fri, 17 Nov 2023 12:29:03 +0800 Subject: [PATCH] fix: fix typo in get_proof impl --- core/api/src/adapter.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/api/src/adapter.rs b/core/api/src/adapter.rs index 3dcfd167a..9b346634f 100644 --- a/core/api/src/adapter.rs +++ b/core/api/src/adapter.rs @@ -281,7 +281,7 @@ where "Can't find this position".to_string(), )) })?, - proof: state_mpt_tree + proof: storage_mpt_tree .get_proof(hash.as_bytes())? .into_iter() .map(Hex::encode)