Files
revive/crates/integration/contracts/Value.sol
T
Cyrill Leutwiler ea63991617 implement address and msg.sender
Signed-off-by: Cyrill Leutwiler <bigcyrill@hotmail.com>
2024-05-08 16:09:23 +02:00

10 lines
163 B
Solidity

// SPDX-License-Identifier: MIT
pragma solidity ^0.8;
contract Value {
function value() public payable returns (uint ret) {
ret = msg.value;
}
}