From 29098bd4a9e53c3ecdafa9399e4da2f76ca04434 Mon Sep 17 00:00:00 2001 From: Rubilmax Date: Wed, 5 Oct 2022 13:53:23 +0200 Subject: [PATCH] Updated example --- contracts/Example.sol | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/contracts/Example.sol b/contracts/Example.sol index eca95d6..0bea963 100644 --- a/contracts/Example.sol +++ b/contracts/Example.sol @@ -5,8 +5,8 @@ contract Example { struct Struct { bool a; uint256 b; - uint16 c; - uint16 d; + uint64 c; + uint64 d; address e; } @@ -15,7 +15,7 @@ contract Example { uint256[10] __gap; - address _owner; + address owner; mapping(address => Struct[]) structOf; }