Skip to content

Commit

Permalink
code review cleanups
Browse files Browse the repository at this point in the history
  • Loading branch information
gjermundgaraba committed Nov 27, 2024
1 parent f8ad053 commit 6696ceb
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ build-docker-wasm:
.PHONY: build-docker-wasm

build-wasm-light-clients:
cd modules/light-clients/08-wasm-light-clients && cargo wasm
cd modules/light-clients/08-wasm-light-clients && cargo build --release --lib --target wasm32-unknown-unknown

.PHONY: build-wasm-light-clients

Expand Down

This file was deleted.

4 changes: 2 additions & 2 deletions modules/light-clients/08-wasm-light-clients/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions modules/light-clients/08-wasm-light-clients/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,17 @@ optimize = """docker run --rm -v "$(pwd)":/code \
ibc-go-proto = { path = "packages/ibc-go-proto" }

# CosmWasm related dependencies
cosmwasm-schema = "2.1.4"
cosmwasm-std = "2.1.4"
cw-storage-plus = "2.0.0"
cosmwasm-schema = "2.1"
cosmwasm-std = "2.1"
cw-storage-plus = "2.0"
serde = { version = "1.0.215", default-features = false, features = ["derive"] }
thiserror = "2.0.3"
thiserror = "2.0"

# Proto related dependencies
ics23 = { version = "0.12.0", default-features = false }
tendermint-proto = { version = "0.40.0", default-features = false }
cosmos-sdk-proto = { version = "0.26.1", default-features = false }
prost = { version = "0.13.3", default-features = false, features = ["prost-derive"] }
ics23 = { version = "0.12", default-features = false }
tendermint-proto = { version = "0.40", default-features = false }
cosmos-sdk-proto = { version = "0.26", default-features = false }
prost = { version = "0.13", default-features = false, features = ["prost-derive"] }

# dev-dependencies
cw-multi-test = "2.2.0"
Expand Down

0 comments on commit 6696ceb

Please sign in to comment.