mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge pull request #4550 from ethereum/fix_abidecode_comment
Fix abiDecode comment
This commit is contained in:
commit
1dac6effed
@ -97,9 +97,9 @@ public:
|
|||||||
|
|
||||||
/// Creates code that unpacks the arguments according to their types specified by a vector of TypePointers.
|
/// Creates code that unpacks the arguments according to their types specified by a vector of TypePointers.
|
||||||
/// From memory if @a _fromMemory is true, otherwise from call data.
|
/// From memory if @a _fromMemory is true, otherwise from call data.
|
||||||
/// Calls revert if @a _revertOnOutOfBounds is true and the supplied size is shorter
|
/// Calls revert if the supplied size is shorter than the static data requirements
|
||||||
/// than the static data requirements or if dynamic data pointers reach outside of the
|
/// or if dynamic data pointers reach outside of the area.
|
||||||
/// area. Also has a hard cap of 0x100000000 for any given length/offset field.
|
/// Also has a hard cap of 0x100000000 for any given length/offset field.
|
||||||
/// Stack pre: <source_offset> <length>
|
/// Stack pre: <source_offset> <length>
|
||||||
/// Stack post: <value0> <value1> ... <valuen>
|
/// Stack post: <value0> <value1> ... <valuen>
|
||||||
void abiDecode(TypePointers const& _typeParameters, bool _fromMemory = false);
|
void abiDecode(TypePointers const& _typeParameters, bool _fromMemory = false);
|
||||||
|
Loading…
Reference in New Issue
Block a user