mirror of
https://github.com/pezkuwichain/revive.git
synced 2026-04-24 04:17:58 +00:00
1a8a7926e9
Signed-off-by: xermicus <cyrill@parity.io>
28 lines
518 B
Solidity
28 lines
518 B
Solidity
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.8;
|
|
|
|
/* runner.json
|
|
{
|
|
"differential": true,
|
|
"actions": [
|
|
{
|
|
"Instantiate": {
|
|
"code": {
|
|
"Solidity": {
|
|
"contract": "Coinbase"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
*/
|
|
|
|
contract Coinbase {
|
|
constructor() payable {
|
|
address coinbase = address(0xFFfFfFffFFfffFFfFFfFFFFFffFFFffffFfFFFfF);
|
|
assert(block.coinbase == coinbase);
|
|
}
|
|
}
|