EVM-C: remove note about 8-byte alignment

This commit is contained in:
Paweł Bylica 2016-08-31 13:45:24 +02:00
parent dfd21b50c6
commit 1e28593836
1 changed files with 0 additions and 3 deletions

View File

@ -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];
};