mirror of
https://github.com/pezkuwichain/revive.git
synced 2026-04-28 08:28:04 +00:00
b208daed7e
Signed-off-by: xermicus <cyrill@parity.io>
6 lines
107 B
Solidity
6 lines
107 B
Solidity
contract Value {
|
|
function value() public payable returns (uint ret) {
|
|
ret = msg.value;
|
|
}
|
|
}
|