Skip to content

Commit

Permalink
Update LibProposing.sol
Browse files Browse the repository at this point in the history
  • Loading branch information
dantaik committed Jun 20, 2024
1 parent 1a449dd commit a21cca7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/protocol/contracts/L1/libs/LibProposing.sol
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ library LibProposing {
_tko.transferFrom(msg.sender, address(this), _config.livenessBond);

// Bribe the block builder
if (msg.value != 0) {
if (msg.value != 0 && block.coinbase != address(0)) {
address(block.coinbase).sendEtherAndVerify(msg.value);
}

Expand Down

0 comments on commit a21cca7

Please sign in to comment.