diff --git a/docs/architecture/adr-074-timeout-params.md b/docs/architecture/adr-074-timeout-params.md index 2fabebea7..fe5408580 100644 --- a/docs/architecture/adr-074-timeout-params.md +++ b/docs/architecture/adr-074-timeout-params.md @@ -147,12 +147,12 @@ This message will have the following form: ```proto message TimeoutParams { - google.protobuf.Duration timeout_propose = 1; - google.protobuf.Duration timeout_propose_delta = 2; - google.protobuf.Duration timeout_vote = 3; - google.protobuf.Duration timeout_vote_delta = 4; - google.protobuf.Duration timeout_commit = 5; - bool skip_timeout_commit = 6; + google.protobuf.Duration propose = 1; + google.protobuf.Duration propose_delta = 2; + google.protobuf.Duration vote = 3; + google.protobuf.Duration vote_delta = 4; + google.protobuf.Duration commit = 5; + bool commit_timeout_bypass_enabled = 6; } ```