Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 408 Bytes

coinbase.md

File metadata and controls

22 lines (15 loc) · 408 Bytes

coinbase

Description

The coinbase cheatcode will set the block.coinbase

Example

// Obtain our cheat code contract reference.
IStdCheats cheats = CheatCodes(0x7109709ECfa91a80626fF3989D68f67F5b1DD12D);

// Change value and verify.
cheats.coinbase(address(7));
assert(block.coinbase == address(7));

Function Signature

function coinbase(address) external;