Skip to content
Open
Show file tree
Hide file tree
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/src/SuccinctLidoOracleV1.sol
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ contract SuccinctLidoOracleV1 is LidoZKOracle {
/// @param _slot The slot to get the block root for.
/// @return blockRoot The beacon block root of the given slot.
/// @dev BEACON_ROOTS returns a block root for a given parent block's timestamp. To get the block root for slot
/// N, you use the timestamp of slot N+1. If N+1 is not avaliable, you use the timestamp of slot N+2, and
/// N, you use the timestamp of slot N+1. If N+1 is not available, you use the timestamp of slot N+2, and
// so on.
function findBlockRoot(uint64 _slot) public view returns (bytes32 blockRoot) {
uint256 currBlockTimestamp = GENESIS_BLOCK_TIMESTAMP + ((_slot + 1) * 12);
Expand Down
2 changes: 1 addition & 1 deletion operator/src/operator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ export class Operator {
}

async initialize() {
console.log("Initializaing operator...");
console.log("Initializing operator...");
this.succinctOracle = getContract({
abi: SUCCINCT_LIDO_ORACLE_V1_ABI,
address: this.config.succinctOracleAddress,
Expand Down