Skip to content

Commit

Permalink
remove deprecation from arithmetic & geometric twap to now query (#3917)
Browse files Browse the repository at this point in the history
  • Loading branch information
iboss-ptk authored Jan 4, 2023
1 parent e82ee7c commit 0e42afc
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 54 deletions.
2 changes: 0 additions & 2 deletions proto/osmosis/twap/v1beta1/query.proto
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,13 @@ service Query {
}
rpc ArithmeticTwapToNow(ArithmeticTwapToNowRequest)
returns (ArithmeticTwapToNowResponse) {
option deprecated = true;
option (google.api.http).get = "/osmosis/twap/v1beta1/ArithmeticTwapToNow";
}
rpc GeometricTwap(GeometricTwapRequest) returns (GeometricTwapResponse) {
option (google.api.http).get = "/osmosis/twap/v1beta1/GeometricTwap";
}
rpc GeometricTwapToNow(GeometricTwapToNowRequest)
returns (GeometricTwapToNowResponse) {
option deprecated = true;
option (google.api.http).get = "/osmosis/twap/v1beta1/GeometricTwapToNow";
}
}
Expand Down
101 changes: 49 additions & 52 deletions x/twap/client/queryproto/query.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 0e42afc

Please sign in to comment.