Skip to content

Commit

Permalink
Merge branch 'brent/build-release-migration-0.32.0' (#2941)
Browse files Browse the repository at this point in the history
* origin/brent/build-release-migration-0.32.0:
  remove vp user hash from SE
  build migrations in release runtime
  • Loading branch information
brentstone committed Mar 22, 2024
2 parents 5e0b162 + cf6c983 commit 8bfd6c8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ build-release:
$(cargo) build $(jobs) --release --timings --package namada_apps \
--manifest-path Cargo.toml \
--no-default-features \
--features jemalloc
--features jemalloc \
--features migrations

build-debug:
$(cargo) build --package namada_apps --manifest-path Cargo.toml
Expand Down
5 changes: 3 additions & 2 deletions examples/make-db-migration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,9 @@ fn main() {
se_migration()
}

// TODO: put in the correct hash
const REMOVED_HASH: &str = "000000000000000000000000000000000000000";
// The current vp_user hash to be replaced on the SE
const REMOVED_HASH: &str =
"129EE7BEE68B02BFAE638DA2A634B8ECBFFA2CB3F46CFA8E172BAF009627EC78";
fn se_migration() {
// Get VP
let wasm_path = "wasm";
Expand Down

0 comments on commit 8bfd6c8

Please sign in to comment.