implement the value opcode

Signed-off-by: xermicus <cyrill@parity.io>
This commit is contained in:
xermicus
2024-04-17 18:05:51 +02:00
parent 09b905415b
commit b208daed7e
8 changed files with 78 additions and 4 deletions
+5
View File
@@ -0,0 +1,5 @@
contract Value {
function value() public payable returns (uint ret) {
ret = msg.value;
}
}