solidity/test/libsolidity/semanticTests/state/tx_gasprice.sol
2021-04-23 17:00:01 +01:00

13 lines
216 B
Solidity

contract C {
function f() public returns (uint) {
return tx.gasprice;
}
}
// ====
// compileViaYul: also
// compileToEwasm: also
// ----
// f() -> 3000000000
// f() -> 3000000000
// f() -> 3000000000