Skip to content

Commit d52400a

Browse files
committed
Fix build
1 parent 2e95e2e commit d52400a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

examples/cw-contract/src/contract.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ use cosmwasm_std::{
1212
StdResult,
1313
};
1414

15-
use pyth_sdk_terra::query_price_feed;
15+
use pyth_sdk_cw::query_price_feed;
1616

1717
use crate::msg::{
1818
ExecuteMsg,

examples/cw-contract/src/msg.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use pyth_sdk_terra::{
1+
use pyth_sdk_cw::{
22
Price,
33
PriceIdentifier,
44
};

examples/cw-contract/src/state.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use serde::{
66
};
77

88
use cw_storage_plus::Item;
9-
use pyth_sdk_terra::PriceIdentifier;
9+
use pyth_sdk_cw::PriceIdentifier;
1010

1111
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, JsonSchema)]
1212
pub struct State {

pyth-sdk-cw/examples/schema.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use cosmwasm_schema::{
66
use std::env::current_dir;
77
use std::fs::create_dir_all;
88

9-
use pyth_sdk_terra::{
9+
use pyth_sdk_cw::{
1010
PriceFeedResponse,
1111
QueryMsg,
1212
};

0 commit comments

Comments
 (0)