Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
xqft committed Aug 23, 2024
1 parent b0b6ce7 commit 2ca07ab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/build-go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ jobs:
run: make build_merkle_tree_linux
- name: Build Mina bindings
run: make build_mina_linux
- name: Build Mina Account bindings
run: make build_mina_account_linux
- name: Build operator
run: go build operator/cmd/main.go
- name: Build aggregator
Expand Down
2 changes: 1 addition & 1 deletion operator/mina_account/lib/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ fn parse_pub_inputs(pub_inputs: &[u8]) -> Result<(Fp, Fp, [u8; KECCAK_HASH_SIZE]

let merkle_root = parse_mina_hash(pub_inputs, &mut offset)?;
let account_hash = parse_mina_hash(pub_inputs, &mut offset)?;
let account_id_hash = parse_keccak256_hash(&pub_inputs, &mut offset)?;
let account_id_hash = parse_keccak256_hash(pub_inputs, &mut offset)?;

Ok((merkle_root, account_hash, account_id_hash))
}
Expand Down

0 comments on commit 2ca07ab

Please sign in to comment.