Skip to content

Commit

Permalink
fix: rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
ananas-block committed Nov 19, 2024
1 parent 51f4de7 commit 4b6ba17
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/light-examples-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ jobs:
sub-tests: '[
"cargo test-sbf -p token-escrow -- --test-threads=1"
]'
- program: name-service-without-macros-test
sub-tests: '[
"cargo test-sbf -p name-service-without-macros -- --test-threads=1"
]'
# - program: name-service-without-macros-test
# sub-tests: '[
# "cargo test-sbf -p name-service-without-macros -- --test-threads=1"
# ]'

steps:
- name: Checkout sources
Expand Down
2 changes: 1 addition & 1 deletion merkle-tree/indexed/tests/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -736,7 +736,7 @@ pub fn print_test_data() {

let proof = relayer_merkle_tree.get_proof_of_leaf(2, true).unwrap();

let leaf = relayer_merkle_tree.merkle_tree.get_leaf(2);
let leaf = relayer_merkle_tree.merkle_tree.get_leaf(2).unwrap();
let leaf_bn = BigUint::from_bytes_be(&leaf);
println!("(30) leaf_hash[2] = {:?}", leaf_bn);

Expand Down

0 comments on commit 4b6ba17

Please sign in to comment.