Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/macos/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ runs:

rustup toolchain install
rustup target add wasm32-unknown-unknown
rustup component add rustfmt --toolchain nightly
rustup toolchain install nightly-2026-08-31 --profile minimal --component rustfmt
rustup component add clippy rust-src
shell: bash
- name: Set LIBCLANG_PATH for clang-sys (bindgen/rocksdb etc.)
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/ubuntu/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ runs:
# This installs the channel + every component/target listed in the file.
rustup toolchain install
rustup target add wasm32-unknown-unknown
rustup component add rustfmt --toolchain nightly
rustup toolchain install nightly-2026-08-31 --profile minimal --component rustfmt
rustup component add clippy rust-src
shell: bash
- name: Set LIBCLANG_PATH for clang-sys (bindgen/rocksdb etc.)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
- name: Run format checks
run: |
taplo format --check --config taplo.toml
cargo +nightly fmt --all -- --check
cargo +nightly-2026-08-31 fmt --all -- --check

build-and-test-matrix:
name: 🛠️ Build & Test Matrix
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create-release-tag-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
- name: Run format checks
run: |
taplo format --check --config taplo.toml
cargo +nightly fmt --all -- --check
cargo +nightly-2026-08-31 fmt --all -- --check

build-and-test:
name: 🛠️ Build & Test Release
Expand Down
5 changes: 3 additions & 2 deletions src/cli/cold_signing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -606,8 +606,9 @@ mod tests {
expected_tail.extend(codec::Encode::encode(&codec::Compact(7u64)));
expected_tail.extend(codec::Encode::encode(&codec::Compact(0u128)));
expected_tail.push(0u8); // CheckMetadataHash mode = disabled
// Implicit: specVersion, txVersion (LE u32), genesis, era anchor block hash,
// metadataHash Option = None

// Implicit: specVersion, txVersion (LE u32), genesis, era anchor block hash,
// metadataHash Option = None
expected_tail.extend(136u32.to_le_bytes());
expected_tail.extend(3u32.to_le_bytes());
expected_tail.extend([0x49u8; 32]);
Expand Down
5 changes: 3 additions & 2 deletions src/cli/wormhole.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4348,8 +4348,9 @@ async fn run_check_nullifier(
log_print!(" Subsquid URL: {}", subsquid_url);
log_print!("");

// Compute nullifiers for each transfer count
let mut nullifiers_to_check: Vec<(String, String, u64)> = Vec::new(); // (nullifier_hex, nullifier_hash, transfer_count)
// Compute nullifiers for each transfer count:
// (nullifier_hex, nullifier_hash, transfer_count)
let mut nullifiers_to_check: Vec<(String, String, u64)> = Vec::new();

for tc in &transfer_counts {
let nullifier = wormhole_lib::compute_nullifier(&secret, *tc).map_err(|e| {
Expand Down
Loading