Skip to content

Commit

Permalink
correct comments about verifiedAt
Browse files Browse the repository at this point in the history
  • Loading branch information
dantaik committed Nov 2, 2024
1 parent 693b234 commit 9a3c5ab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/protocol/contracts/layer1/based/LibUtils.sol
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ library LibUtils {
/// @param _blockId Id of the block.
/// @return blockHash_ The block's block hash.
/// @return stateRoot_ The block's storage root.
/// @return verifiedAt_ The timestamp when the block was verified.
/// @return verifiedAt_ The timestamp when the block was proven at.
function getBlockInfo(
TaikoData.State storage _state,
TaikoData.Config memory _config,
Expand Down
4 changes: 2 additions & 2 deletions packages/protocol/contracts/layer1/based/TaikoL1.sol
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ contract TaikoL1 is EssentialContract, ITaikoL1, TaikoEvents {
/// @return blockId_ The last verified block's ID.
/// @return blockHash_ The last verified block's blockHash.
/// @return stateRoot_ The last verified block's stateRoot.
/// @return verifiedAt_ The timestamp this block is verified at.
/// @return verifiedAt_ The timestamp this block is proven at.
function getLastVerifiedBlock()
external
view
Expand All @@ -258,7 +258,7 @@ contract TaikoL1 is EssentialContract, ITaikoL1, TaikoEvents {
/// @return blockId_ The last verified block's ID.
/// @return blockHash_ The last verified block's blockHash.
/// @return stateRoot_ The last verified block's stateRoot.
/// @return verifiedAt_ The timestamp this block is verified at.
/// @return verifiedAt_ The timestamp this block is proven at.
function getLastSyncedBlock()
external
view
Expand Down

0 comments on commit 9a3c5ab

Please sign in to comment.