-
Notifications
You must be signed in to change notification settings - Fork 202
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(oracle): remove tobin tax #816
Conversation
@@ -16,7 +16,7 @@ message GenesisState { | |||
repeated MissCounter miss_counters = 4 [(gogoproto.nullable) = false]; | |||
repeated AggregateExchangeRatePrevote aggregate_exchange_rate_prevotes = 5 [(gogoproto.nullable) = false]; | |||
repeated AggregateExchangeRateVote aggregate_exchange_rate_votes = 6 [(gogoproto.nullable) = false]; | |||
repeated TobinTax tobin_taxes = 7 [(gogoproto.nullable) = false]; | |||
repeated Pair pairs = 7 [(gogoproto.nullable) = false]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The Pair
message only contains a string. Maybe it would be cleaner to get rid of the Pair
message and just use repeated string
here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd rather do this in a follow up PR just to keep PRs scope small in order to avoid having reviewability issues, I'll create a follow up issue.
closes: #806