You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We currently do not support free user inputs - only inputs that are data entries in a type's storage contract.
For free user inputs, we can change dType to have:
function runData(bytes32 funcHash, bytes32[] memory dataHash, bytes memory freeinputs)
public
returns(bytes32[] dataHashOutputs)
runData will append the freeinputs to the calldata, after the storage data entries.
This means that any pure function defined by funcHash must define it's free inputs last, in the function signature.
The text was updated successfully, but these errors were encountered:
We currently do not support free user inputs - only inputs that are data entries in a type's storage contract.
For free user inputs, we can change
dType
to have:runData
will append thefreeinputs
to the calldata, after the storage data entries.This means that any
pure
function defined byfuncHash
must define it's free inputs last, in the function signature.The text was updated successfully, but these errors were encountered: