Skip to content

Commit

Permalink
refactor(decoder): fix rustdoc warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
suchapalaver committed Nov 6, 2024
1 parent 0eb3314 commit a72454d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions crates/firehose-protos/protos/block.proto
Original file line number Diff line number Diff line change
Expand Up @@ -791,9 +791,9 @@ message GasChange {
REASON_CONTRACT_CREATION2 = 7;
// REASON_DELEGATE_CALL is the amount of gas that will be charged for a 'DELEGATECALL' opcode executed by the EVM
REASON_DELEGATE_CALL = 8;
// REASON_EVENT_LOG is the amount of gas that will be charged for a 'LOG<N>' opcode executed by the EVM
// REASON_EVENT_LOG is the amount of gas that will be charged for a `LOG<N>` opcode executed by the EVM
REASON_EVENT_LOG = 9;
// REASON_EXT_CODE_COPY is the amount of gas that will be charged for a 'LOG<N>' opcode executed by the EVM
// REASON_EXT_CODE_COPY is the amount of gas that will be charged for a `LOG<N>` opcode executed by the EVM
REASON_EXT_CODE_COPY = 10;
// REASON_FAILED_EXECUTION is the burning of the remaining gas when the execution failed without a revert
REASON_FAILED_EXECUTION = 11;
Expand Down
4 changes: 2 additions & 2 deletions crates/forrestrie/src/beacon_state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ pub const CAPELLA_START_SLOT: usize = CAPELLA_START_EPOCH * SLOTS_PER_EPOCH;
/// The first era of the Deneb fork.
pub const CAPELLA_START_ERA: usize =
(CAPELLA_START_EPOCH * SLOTS_PER_EPOCH) / SLOTS_PER_HISTORICAL_ROOT;
/// https://beaconcha.in/slot/8626176
/// <https://beaconcha.in/slot/8626176>
pub const DENEB_START_SLOT: usize = 8626176;
/// https://beaconcha.in/slot/8626176
/// <https://beaconcha.in/slot/8626176>
pub const FIRST_EXECUTION_BLOCK_DENEB: usize = 19426587;
/// The offset between the Ethereum block number and the Beacon block number at the start of the Deneb fork,
/// i.e. the difference between the first execution block number in the Deneb fork and the start slot number of the Deneb fork.
Expand Down

0 comments on commit a72454d

Please sign in to comment.