Skip to content
This repository was archived by the owner on Mar 25, 2024. It is now read-only.

Use scientific notation for better understanding #101

Open
wants to merge 1 commit into
base: sb-short-term-fee-model
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion contracts/SystemContext.sol
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ contract SystemContext is ISystemContext, ISystemContextDeprecated, ISystemContr
address public coinbase = BOOTLOADER_FORMAL_ADDRESS;

/// @notice Formal `block.difficulty` parameter.
uint256 public difficulty = 2500000000000000;
uint256 public difficulty = 2.5e15;

/// @notice The `block.basefee`.
/// @dev It is currently a constant.
Expand Down