diff --git a/indexer/packages/v4-protos/src/codegen/dydxprotocol/blocktime/params.ts b/indexer/packages/v4-protos/src/codegen/dydxprotocol/blocktime/params.ts index b7ae9428b7..05483e5024 100644 --- a/indexer/packages/v4-protos/src/codegen/dydxprotocol/blocktime/params.ts +++ b/indexer/packages/v4-protos/src/codegen/dydxprotocol/blocktime/params.ts @@ -24,8 +24,10 @@ export interface DowntimeParamsSDKType { export interface SynchronyParams { /** * next_block_delay replaces the locally configured timeout_commit in - * CometBFT. It determines the amount of time the CometBFT waits after the If - * the application sends next_block_delay = 0 to the consensus engine, the + * CometBFT. It determines the amount of time the CometBFT waits after the + * `CommitTime` (subjective time when +2/3 precommits were received), before + * moving to next height. + * If the application sends next_block_delay = 0 to the consensus engine, the * latter defaults back to using timeout_commit. */ nextBlockDelay?: Duration; @@ -35,8 +37,10 @@ export interface SynchronyParams { export interface SynchronyParamsSDKType { /** * next_block_delay replaces the locally configured timeout_commit in - * CometBFT. It determines the amount of time the CometBFT waits after the If - * the application sends next_block_delay = 0 to the consensus engine, the + * CometBFT. It determines the amount of time the CometBFT waits after the + * `CommitTime` (subjective time when +2/3 precommits were received), before + * moving to next height. + * If the application sends next_block_delay = 0 to the consensus engine, the * latter defaults back to using timeout_commit. */ next_block_delay?: DurationSDKType; diff --git a/proto/dydxprotocol/blocktime/params.proto b/proto/dydxprotocol/blocktime/params.proto index 8e4dc7d424..a7a5c44b2c 100644 --- a/proto/dydxprotocol/blocktime/params.proto +++ b/proto/dydxprotocol/blocktime/params.proto @@ -17,9 +17,9 @@ message DowntimeParams { // SynchronyParams defines the parameters for block synchrony. message SynchronyParams { // next_block_delay replaces the locally configured timeout_commit in - // CometBFT. It determines the amount of time the CometBFT waits after the - // `CommitTime` (subjective time when +2/3 precommits were received), before - // moving to next height. + // CometBFT. It determines the amount of time the CometBFT waits after the + // `CommitTime` (subjective time when +2/3 precommits were received), before + // moving to next height. // If the application sends next_block_delay = 0 to the consensus engine, the // latter defaults back to using timeout_commit. google.protobuf.Duration next_block_delay = 1