From fd655299cadfd9f94a7f5772e8c688886cec37fd Mon Sep 17 00:00:00 2001 From: Julian Compagni Portis Date: Thu, 9 Jan 2025 14:05:00 -0700 Subject: [PATCH] Add comment --- proto/neutron/dex/params.proto | 2 ++ x/dex/types/params.pb.go | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/proto/neutron/dex/params.proto b/proto/neutron/dex/params.proto index 1b23a4e34..3e7023279 100644 --- a/proto/neutron/dex/params.proto +++ b/proto/neutron/dex/params.proto @@ -15,5 +15,7 @@ message Params { ]; uint64 max_jits_per_block = 4; uint64 good_til_purge_allowance = 5; + // Whitelisted_lps have special LP privileges; + // currently, the only such privilege is depositing outside of the allowed fee_tiers. repeated string whitelisted_lps = 6; } diff --git a/x/dex/types/params.pb.go b/x/dex/types/params.pb.go index ea07789d0..41159d6dc 100644 --- a/x/dex/types/params.pb.go +++ b/x/dex/types/params.pb.go @@ -29,7 +29,9 @@ type Params struct { Paused bool `protobuf:"varint,3,opt,name=paused,proto3" json:"paused"` MaxJitsPerBlock uint64 `protobuf:"varint,4,opt,name=max_jits_per_block,json=maxJitsPerBlock,proto3" json:"max_jits_per_block,omitempty"` GoodTilPurgeAllowance uint64 `protobuf:"varint,5,opt,name=good_til_purge_allowance,json=goodTilPurgeAllowance,proto3" json:"good_til_purge_allowance,omitempty"` - WhitelistedLps []string `protobuf:"bytes,6,rep,name=whitelisted_lps,json=whitelistedLps,proto3" json:"whitelisted_lps,omitempty"` + // Whitelisted_lps have special LP privileges; + // currently, the only such privilege is depositing outside of the allowed fee_tiers. + WhitelistedLps []string `protobuf:"bytes,6,rep,name=whitelisted_lps,json=whitelistedLps,proto3" json:"whitelisted_lps,omitempty"` } func (m *Params) Reset() { *m = Params{} }