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
{{ message }}
This repository has been archived by the owner on Jul 2, 2021. It is now read-only.
It is not possible to specify gas/value for operation calls:
contract AbstractB {
function getX() returns(uint) {
return 3;
}
}
contract A {
function makeCall(address addressB) {
AbstractB(addressB).getX.value(1 ether).gas(0); // Error can not find value
AbstractB(addressB).getX.gas(1000)(); // Error can not find gas
}
}
The text was updated successfully, but these errors were encountered:
andreasmuelder
changed the title
Not possible to specify gas / value for operation calls
Not possible to specify gas/value for operation calls
Oct 12, 2018
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
It is not possible to specify gas/value for operation calls:
The text was updated successfully, but these errors were encountered: