From 94237c2ad0cc622e11bb0c8584fb499e64e59ff4 Mon Sep 17 00:00:00 2001 From: lightclient <14004106+lightclient@users.noreply.github.com> Date: Wed, 20 Dec 2023 14:36:47 -0700 Subject: [PATCH] Update EIP-3074: fix misaligned memory description Merged by EIP-Bot. --- EIPS/eip-3074.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/EIPS/eip-3074.md b/EIPS/eip-3074.md index 90901dfc40d3c..8011a67feb1bc 100644 --- a/EIPS/eip-3074.md +++ b/EIPS/eip-3074.md @@ -70,9 +70,9 @@ A new opcode `AUTH` shall be created at `0xf6`. It shall take three stack elemen The final two stack arguments (`offset` and `length`) describe a range of memory. The format of the contents of that range is: - `memory[offset : offset+1 ]` - `yParity` - - `memory[offset+32 : offset+33]` - `r` - - `memory[offset+64 : offset+65]` - `s` - - `memory[offset+96 : offset+97]` - `commit` + - `memory[offset+1 : offset+33]` - `r` + - `memory[offset+33 : offset+65]` - `s` + - `memory[offset+65 : offset+97]` - `commit` #### Output