From 137076c964c510f97bf3de9f457f3eaf9e903216 Mon Sep 17 00:00:00 2001 From: Daniel Lubarov Date: Sat, 13 Aug 2022 12:16:19 -0700 Subject: [PATCH] Revert "Add static" This reverts commit 90c4e1b9d1cad9309c0cbcaeff52c172167b2c1c. --- evm/src/memory/segments.rs | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/evm/src/memory/segments.rs b/evm/src/memory/segments.rs index 37cdc4b6..48f9136b 100644 --- a/evm/src/memory/segments.rs +++ b/evm/src/memory/segments.rs @@ -22,15 +22,8 @@ pub(crate) enum Segment { TxnFields = 8, /// Contains the data field of a transaction. TxnData = 9, - /// A buffer used to hold raw RLP data. + /// Raw RLP data. RlpRaw = 10, - /// Contains all trie data. Tries are stored as immutable, copy-on-write trees, so this is an - /// append-only buffer. It is owned by the kernel, so it is only used with context 0. - TrieData = 11, - /// The account address associated with the `i`th storage trie. - StorageTrieAddresses = 12, - /// A pointer to the `i`th storage within the `TrieData` buffer. - StorageTriePointers = 13, } impl Segment {