diff options
author | chriseth <chris@ethereum.org> | 2018-07-02 18:55:22 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-02 18:55:22 +0800 |
commit | 85b9d3927a46748583a78e84c87559933954aebc (patch) | |
tree | be4387a934cdefff0f603f14f6966e1a4c140f8e /libsolidity/codegen/CompilerUtils.h | |
parent | a5608b31a759031377ec91300ad7a470d48bb1d2 (diff) | |
parent | 7763d21cc6181204b1454437b051ac56d3e89339 (diff) | |
download | dexon-solidity-85b9d3927a46748583a78e84c87559933954aebc.tar dexon-solidity-85b9d3927a46748583a78e84c87559933954aebc.tar.gz dexon-solidity-85b9d3927a46748583a78e84c87559933954aebc.tar.bz2 dexon-solidity-85b9d3927a46748583a78e84c87559933954aebc.tar.lz dexon-solidity-85b9d3927a46748583a78e84c87559933954aebc.tar.xz dexon-solidity-85b9d3927a46748583a78e84c87559933954aebc.tar.zst dexon-solidity-85b9d3927a46748583a78e84c87559933954aebc.zip |
Merge pull request #4224 from ethereum/revert_wrong_calldata
[BREAKING] Revert if calldata has wrong size
Diffstat (limited to 'libsolidity/codegen/CompilerUtils.h')
-rw-r--r-- | libsolidity/codegen/CompilerUtils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libsolidity/codegen/CompilerUtils.h b/libsolidity/codegen/CompilerUtils.h index 8e3a8a5d..0ff3ad7c 100644 --- a/libsolidity/codegen/CompilerUtils.h +++ b/libsolidity/codegen/CompilerUtils.h @@ -102,7 +102,7 @@ public: /// area. Also has a hard cap of 0x100000000 for any given length/offset field. /// Stack pre: <source_offset> <length> /// Stack post: <value0> <value1> ... <valuen> - void abiDecode(TypePointers const& _typeParameters, bool _fromMemory = false, bool _revertOnOutOfBounds = false); + void abiDecode(TypePointers const& _typeParameters, bool _fromMemory = false); /// Copies values (of types @a _givenTypes) given on the stack to a location in memory given /// at the stack top, encoding them according to the ABI as the given types @a _targetTypes. |