Skip to content

Commit 58c5b76

Browse files
authored
fix return type schema for v2/price-feeds/ (#1672)
1 parent d553f19 commit 58c5b76

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

apps/hermes/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/hermes/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hermes"
3-
version = "0.5.12"
3+
version = "0.5.13"
44
description = "Hermes is an agent that provides Verified Prices from the Pythnet Pyth Oracle."
55
edition = "2021"
66

apps/hermes/src/api/rest/v2/price_feeds_metadata.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ pub struct PriceFeedsMetadataQueryParams {
4141
get,
4242
path = "/v2/price_feeds",
4343
responses(
44-
(status = 200, description = "Price feeds metadata retrieved successfully", body = Vec<RpcPriceIdentifier>)
44+
(status = 200, description = "Price feeds metadata retrieved successfully", body = Vec<PriceFeedMetadata>)
4545
),
4646
params(
4747
PriceFeedsMetadataQueryParams

0 commit comments

Comments
 (0)