[Fun side project] Add on-chain cw-orch #2171
test.yml
on: pull_request
ubuntu / stable / coverage
11m 8s
Matrix: doc-tests / stable
Matrix: required
Annotations
14 errors
the following explicit lifetimes could be elided: 'a:
packages/cw-orch-on-chain/src/core.rs#L412
error: the following explicit lifetimes could be elided: 'a
--> packages/cw-orch-on-chain/src/core.rs:412:6
|
412 | impl<'a> NodeQuerier for OnChain<'a> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
412 - impl<'a> NodeQuerier for OnChain<'a> {
412 + impl NodeQuerier for OnChain<'_> {
|
|
the following explicit lifetimes could be elided: 'a:
packages/cw-orch-on-chain/src/core.rs#L406
error: the following explicit lifetimes could be elided: 'a
--> packages/cw-orch-on-chain/src/core.rs:406:6
|
406 | impl<'a> EnvironmentQuerier for OnChain<'a> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
406 - impl<'a> EnvironmentQuerier for OnChain<'a> {
406 + impl EnvironmentQuerier for OnChain<'_> {
|
|
the following explicit lifetimes could be elided: 'a:
packages/cw-orch-on-chain/src/core.rs#L322
error: the following explicit lifetimes could be elided: 'a
--> packages/cw-orch-on-chain/src/core.rs:322:6
|
322 | impl<'a> BankQuerier for OnChain<'a> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
322 - impl<'a> BankQuerier for OnChain<'a> {
322 + impl BankQuerier for OnChain<'_> {
|
|
the following explicit lifetimes could be elided: 'a:
packages/cw-orch-on-chain/src/core.rs#L304
error: the following explicit lifetimes could be elided: 'a
--> packages/cw-orch-on-chain/src/core.rs:304:6
|
304 | impl<'a> Querier for OnChain<'a> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
304 - impl<'a> Querier for OnChain<'a> {
304 + impl Querier for OnChain<'_> {
|
|
the following explicit lifetimes could be elided: 'a:
packages/cw-orch-on-chain/src/core.rs#L288
error: the following explicit lifetimes could be elided: 'a
--> packages/cw-orch-on-chain/src/core.rs:288:6
|
288 | impl<'a> QueryHandler for OnChain<'a> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
288 - impl<'a> QueryHandler for OnChain<'a> {
288 + impl QueryHandler for OnChain<'_> {
|
|
the following explicit lifetimes could be elided: 'a:
packages/cw-orch-on-chain/src/core.rs#L193
error: the following explicit lifetimes could be elided: 'a
--> packages/cw-orch-on-chain/src/core.rs:193:6
|
193 | impl<'a> TxHandler for OnChain<'a> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
193 - impl<'a> TxHandler for OnChain<'a> {
193 + impl TxHandler for OnChain<'_> {
|
|
the following explicit lifetimes could be elided: 'a:
packages/cw-orch-on-chain/src/core.rs#L123
error: the following explicit lifetimes could be elided: 'a
--> packages/cw-orch-on-chain/src/core.rs:123:6
|
123 | impl<'a> StateInterface for OnChainState<'a> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
= note: `-D clippy::needless-lifetimes` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::needless_lifetimes)]`
help: elide the lifetimes
|
123 - impl<'a> StateInterface for OnChainState<'a> {
123 + impl StateInterface for OnChainState<'_> {
|
|
the trait bound `cw_orch_mock::abstract_cw_multi_test::AppResponse: cw_orch_core::environment::IndexResponse` is not satisfied:
packages/cw-orch-neutron-test-tube/src/queriers/node.rs#L35
error[E0277]: the trait bound `cw_orch_mock::abstract_cw_multi_test::AppResponse: cw_orch_core::environment::IndexResponse` is not satisfied
--> packages/cw-orch-neutron-test-tube/src/queriers/node.rs:35:21
|
35 | type Response = AppResponse;
| ^^^^^^^^^^^ the trait `cw_orch_core::environment::IndexResponse` is not implemented for `cw_orch_mock::abstract_cw_multi_test::AppResponse`
|
= help: the trait `cw_orch_core::environment::IndexResponse` is implemented for `cw_orch_core::AppResponse`
note: required by a bound in `cw_orch_core::environment::NodeQuerier::Response`
--> /home/runner/work/cw-orchestrator/cw-orchestrator/packages/cw-orch-core/src/environment/queriers/node.rs:9:20
|
9 | type Response: IndexResponse + Debug + Send + Clone;
| ^^^^^^^^^^^^^ required by this bound in `NodeQuerier::Response`
|
the trait bound `cw_orch_mock::abstract_cw_multi_test::AppResponse: cw_orch_core::environment::IndexResponse` is not satisfied:
packages/cw-orch-neutron-test-tube/src/core.rs#L194
error[E0277]: the trait bound `cw_orch_mock::abstract_cw_multi_test::AppResponse: cw_orch_core::environment::IndexResponse` is not satisfied
--> packages/cw-orch-neutron-test-tube/src/core.rs:194:21
|
194 | type Response = AppResponse;
| ^^^^^^^^^^^ the trait `cw_orch_core::environment::IndexResponse` is not implemented for `cw_orch_mock::abstract_cw_multi_test::AppResponse`
|
= help: the trait `cw_orch_core::environment::IndexResponse` is implemented for `cw_orch_core::AppResponse`
note: required by a bound in `cw_orch_core::environment::TxHandler::Response`
--> /home/runner/work/cw-orchestrator/cw-orchestrator/packages/cw-orch-core/src/environment/tx_handler.rs:16:20
|
16 | type Response: IndexResponse + Debug + Send + Clone;
| ^^^^^^^^^^^^^ required by this bound in `TxHandler::Response`
|
doc-tests / stable (beta)
Process completed with exit code 101.
|
doc-tests / stable (stable)
The job was canceled because "beta" failed.
|
doc-tests / stable (stable)
The operation was canceled.
|
ubuntu / stable
Process completed with exit code 101.
|
ubuntu / stable / coverage
Process completed with exit code 1.
|