// SPDX-License-Identifier: MIT pragma solidity ^0.8; /* runner.json { "differential": false, "actions": [ { "Instantiate": { "code": { "Solidity": { "contract": "GasPrice" } } } }, { "VerifyCall": { "success": true } } ] } */ contract GasPrice { constructor() payable { assert(tx.gasprice == 1000); } }