Skip to content

Commit 8f3bdc1

Browse files
committed
fix: align oracle params helpers with injective-std 1.19
1 parent 5ffa8a0 commit 8f3bdc1

3 files changed

Lines changed: 7 additions & 9 deletions

File tree

.github/workflows/Basic.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ jobs:
1818
uses: actions-rs/toolchain@v1
1919
with:
2020
profile: minimal
21-
toolchain: 1.87.0
21+
toolchain: 1.88.0
2222
target: wasm32-unknown-unknown
2323
override: true
2424

2525
- name: Run all Rust tests
2626
uses: actions-rs/cargo@v1
2727
with:
2828
command: test
29-
toolchain: 1.87.0
29+
toolchain: 1.88.0
3030
args: --workspace --all-targets --locked
3131
env:
3232
RUST_BACKTRACE: 1
@@ -57,14 +57,14 @@ jobs:
5757
uses: actions-rs/toolchain@v1
5858
with:
5959
profile: minimal
60-
toolchain: 1.87.0
60+
toolchain: 1.88.0
6161
target: wasm32-unknown-unknown
6262
override: true
6363
- name: Run all integration tests
6464
uses: actions-rs/cargo@v1
6565
with:
6666
command: test
67-
toolchain: 1.87.0
67+
toolchain: 1.88.0
6868
args: --workspace --all-targets --locked --features=integration
6969
env:
7070
RUST_BACKTRACE: 1
@@ -81,20 +81,20 @@ jobs:
8181
uses: actions-rs/toolchain@v1
8282
with:
8383
profile: minimal
84-
toolchain: 1.87.0
84+
toolchain: 1.88.0
8585
override: true
8686
components: rustfmt, clippy
8787

8888
- name: Run cargo fmt
8989
uses: actions-rs/cargo@v1
9090
with:
9191
command: fmt
92-
toolchain: 1.87.0
92+
toolchain: 1.88.0
9393
args: --all -- --check
9494

9595
- name: Run cargo clippy
9696
uses: actions-rs/cargo@v1
9797
with:
9898
command: clippy
99-
toolchain: 1.87.0
99+
toolchain: 1.88.0
100100
args: -- -D warnings

contracts/injective-cosmwasm-mock/src/utils.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -728,7 +728,6 @@ pub fn set_address_of_pyth_contract(app: &InjectiveTestApp, validator: &SigningA
728728
params: Some(Params {
729729
pyth_contract: pyth_address.address(),
730730
chainlink_verifier_proxy_contract: "".to_string(),
731-
accept_unverified_chainlink_data_streams_reports: true,
732731
chainlink_data_streams_verification_gas_limit: 1000000,
733732
}),
734733
},

contracts/injective-cosmwasm-stargate-example/src/utils.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,6 @@ pub fn set_address_of_pyth_contract(app: &InjectiveTestApp, validator: &SigningA
510510
params: Some(Params {
511511
pyth_contract: pyth_address.address(),
512512
chainlink_verifier_proxy_contract: "".to_string(),
513-
accept_unverified_chainlink_data_streams_reports: true,
514513
chainlink_data_streams_verification_gas_limit: 1000000,
515514
}),
516515
},

0 commit comments

Comments
 (0)