From e774d0d018dd0884f6722cc728a5b9d79c3229e0 Mon Sep 17 00:00:00 2001 From: wwestgarth Date: Mon, 23 Sep 2024 08:44:19 +0100 Subject: [PATCH] Apply suggestions from code review Co-authored-by: candida-d <62548908+candida-d@users.noreply.github.com> --- protos/sources/vega/governance.proto | 4 ++-- protos/sources/vega/markets.proto | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/protos/sources/vega/governance.proto b/protos/sources/vega/governance.proto index 9fd3947ff0..72686ffef9 100644 --- a/protos/sources/vega/governance.proto +++ b/protos/sources/vega/governance.proto @@ -154,7 +154,7 @@ message NewMarketConfiguration { string tick_size = 16; // If enabled aggressive orders sent to the market will be delayed by the configured number of blocks bool enable_transaction_reordering = 17; - // Number of allowed price levels between an AMM's fair price and its quote prices. An AMM definition that exceeds this will we rejected at submission. + // Number of allowed price levels between an AMM's fair price and its quote prices. An AMM definition that exceeds this will be rejected at submission. optional uint64 allowed_empty_amm_levels = 18; } @@ -231,7 +231,7 @@ message UpdateMarketConfiguration { string tick_size = 12; // If enabled aggressive orders sent to the market will be delayed by the configured number of blocks bool enable_transaction_reordering = 13; - // Number of allowed price levels between an AMM's fair price and its quote prices. An AMM definition that exceeds this will we rejected at submission. + // Number of allowed price levels between an AMM's fair price and its quote prices. An AMM definition that exceeds this will be rejected at submission. optional uint64 allowed_empty_amm_levels = 14; } diff --git a/protos/sources/vega/markets.proto b/protos/sources/vega/markets.proto index 494ac55187..7a159d9aec 100644 --- a/protos/sources/vega/markets.proto +++ b/protos/sources/vega/markets.proto @@ -418,7 +418,7 @@ message Market { string tick_size = 21; // If enabled aggressive orders sent to the market will be delayed by the configured number of blocks bool enable_transaction_reordering = 22; - // Number of allowed price levels between an AMM's fair price and its quote prices. An AMM definition that exceeds this will we rejected at submission. + // Number of allowed price levels between an AMM's fair price and its quote prices. An AMM definition that exceeds this will be rejected at submission. uint64 allowed_empty_amm_levels = 23; }