Skip to content

Commit 4a80520

Browse files
Apply suggestions from code review
Co-authored-by: candida-d <62548908+candida-d@users.noreply.github.com>
1 parent 7a6bacf commit 4a80520

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

datanode/gateway/graphql/schema.graphql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7832,7 +7832,7 @@ type AMM {
78327832
proposedFee: String
78337833
"An AMM with an oracle driven base price will only be updated if abs(new-base-price / old-base-price - 1) >= minimum_price_change_trigger"
78347834
minimumPriceChangeTrigger: String!
7835-
"Factor of the fair-price that the AMM will quotes its best prices"
7835+
"Factor of the fair-price that the AMM quotes as its best prices"
78367836
spread: String!
78377837
}
78387838

protos/sources/vega/commands/v1/commands.proto

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@ message SubmitAMM {
470470
}
471471
// An AMM with an oracle driven base price will only be updated if abs(new-base-price / old-base-price - 1) >= minimum_price_change_trigger.
472472
optional string minimum_price_change_trigger = 7;
473-
// Factor of the fair-price that the AMM will quotes its best prices
473+
// Factor of the fair-price that the AMM will quote as its best prices
474474
optional string spread = 8;
475475
}
476476

@@ -503,7 +503,7 @@ message AmendAMM {
503503
}
504504
// An AMM with an oracle driven base price will only be updated if abs(new-base-price / old-base-price - 1) >= minimum_price_change_trigger.
505505
optional string minimum_price_change_trigger = 7;
506-
// Factor of the fair-price that the AMM will quotes its best prices
506+
// Factor of the fair-price that the AMM will quote as its best prices
507507
optional string spread = 8;
508508
}
509509

protos/sources/vega/events/v1/events.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ message AMM {
5454
optional Curve upper_curve = 11;
5555
// An AMM with an oracle driven base price will only be updated if abs(new-base-price / old-base-price - 1) >= minimum_price_change_trigger.
5656
string minimum_price_change_trigger = 12;
57-
// Factor of the fair-price that the AMM will quotes its best prices
57+
// Factor of the fair-price that the AMM quotes as its best prices
5858
string spread = 13;
5959

6060
enum Status {

0 commit comments

Comments
 (0)