From 19a0e6bb453b50ee430cc50dd872d3e41967a1ab Mon Sep 17 00:00:00 2001 From: Alex Beregszaszi Date: Thu, 8 Dec 2022 01:58:03 +0100 Subject: [PATCH] Fix some typos --- EIPS/eip-6046.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/EIPS/eip-6046.md b/EIPS/eip-6046.md index 87292ad479fb48..a4af4fed15d756 100644 --- a/EIPS/eip-6046.md +++ b/EIPS/eip-6046.md @@ -13,7 +13,7 @@ requires: 2681, 2929, 3529 ## Abstract -Change `SELFDESTRUCT` to not delete all storage keys, and to use a special value in the account nonce to signal *decativated* accounts. Because the semantics of revival change (storage keys may exists), we also rename the instruction to `DEACTIVATE`. +Change `SELFDESTRUCT` to not delete all storage keys, and to use a special value in the account nonce to signal *deactivated* accounts. Because the semantics of revival change (storage keys may exists), we also rename the instruction to `DEACTIVATE`. ## Motivation @@ -30,10 +30,8 @@ Furthermore, with *Verkle trees*, accounts will be organised differently: accoun - Does not delete any storage keys and also leave the account in place. - Transfer the account balance to the target **and** set account balance to `0.` - Set the account nonce to `2^64-1`. - - Note that no refund is given since [EIP-3529](./eip-3529.md). - - Note that the rules of [EIP-2929](./eip-2929.md) regarding `SELFDESTRUCT` remain unchanged. + - Note that no refund is given since [EIP-3529](./eip-3529.md). + - Note that the rules of [EIP-2929](./eip-2929.md) regarding `SELFDESTRUCT` remain unchanged. 2. Modify account execution (triggered both via external transactions or CALL* instructions), such that execution succeeds and returns an empty buffer if the nonce equals `2^64-1`.