From 1e28593836657da609931352ba61cf3435f9b977 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Bylica?= Date: Wed, 31 Aug 2016 13:45:24 +0200 Subject: [PATCH] EVM-C: remove note about 8-byte alignment --- include/evm.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/include/evm.h b/include/evm.h index c2834c9..3f99bd4 100644 --- a/include/evm.h +++ b/include/evm.h @@ -35,9 +35,6 @@ static const uint32_t EVM_ABI_VERSION = 0; /// as both 256-bit integers and 256-bit hashes. struct evm_uint256be { /// The 32 bytes of the big-endian integer or hash. - /// - /// The memory is expected be aligned to 8 bytes, but there is no portable - /// way to express that. uint8_t bytes[32]; };