enable call context address tests

Signed-off-by: Cyrill Leutwiler <bigcyrill@hotmail.com>
This commit is contained in:
Cyrill Leutwiler
2024-09-04 12:55:44 +02:00
parent 393d90165e
commit d47539159b
3 changed files with 36 additions and 19 deletions
+33
View File
@@ -2,6 +2,39 @@
pragma solidity ^0.8;
/* runner.json
{
"differential": true,
"actions": [
{
"Instantiate": {
"code": {
"Solidity": {
"contract": "Context"
}
}
}
},
{
"Call": {
"dest": {
"Instantiated": 0
},
"data": "846a1ee1"
}
},
{
"Call": {
"dest": {
"Instantiated": 0
},
"data": "fc9c8d39"
}
}
]
}
*/
contract Context {
function address_this() public view returns (address ret) {
ret = address(this);