diff --git a/.changelog/unreleased/bug-fixes/754-fix-abcipp.md b/.changelog/unreleased/bug-fixes/754-fix-abcipp.md new file mode 100644 index 0000000000..0355963cab --- /dev/null +++ b/.changelog/unreleased/bug-fixes/754-fix-abcipp.md @@ -0,0 +1,2 @@ +- Fix building with the feature again + ([#754](https://github.com/anoma/namada/pull/754)) \ No newline at end of file diff --git a/Makefile b/Makefile index 9116554558..c6cf7a9657 100644 --- a/Makefile +++ b/Makefile @@ -41,6 +41,9 @@ check: make -C $(wasms_for_tests) check && \ $(foreach wasm,$(wasm_templates),$(check-wasm) && ) true +check-abcipp: + $(cargo) check --all-targets --no-default-features --features "abcipp namada/ibc-mocks-abcipp" + clippy-wasm = $(cargo) +$(nightly) clippy --manifest-path $(wasm)/Cargo.toml --all-targets -- -D warnings clippy: diff --git a/shared/Cargo.toml b/shared/Cargo.toml index 3697fc45f0..7dabaa5dd3 100644 --- a/shared/Cargo.toml +++ b/shared/Cargo.toml @@ -48,6 +48,8 @@ abcipp = [ "ibc-abcipp", "tendermint-abcipp", "tendermint-proto-abcipp", + # it's OK to include the tendermint-rpc feature here, as we aren't currently building wasms with `abcipp` + "tendermint-rpc-abcipp", ] abciplus = [ "namada_core/abciplus",