Skip to content

Commit 2ca07ab

Browse files
committed
Fix CI
1 parent b0b6ce7 commit 2ca07ab

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/build-go.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ jobs:
3030
run: make build_merkle_tree_linux
3131
- name: Build Mina bindings
3232
run: make build_mina_linux
33+
- name: Build Mina Account bindings
34+
run: make build_mina_account_linux
3335
- name: Build operator
3436
run: go build operator/cmd/main.go
3537
- name: Build aggregator

operator/mina_account/lib/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ fn parse_pub_inputs(pub_inputs: &[u8]) -> Result<(Fp, Fp, [u8; KECCAK_HASH_SIZE]
8080

8181
let merkle_root = parse_mina_hash(pub_inputs, &mut offset)?;
8282
let account_hash = parse_mina_hash(pub_inputs, &mut offset)?;
83-
let account_id_hash = parse_keccak256_hash(&pub_inputs, &mut offset)?;
83+
let account_id_hash = parse_keccak256_hash(pub_inputs, &mut offset)?;
8484

8585
Ok((merkle_root, account_hash, account_id_hash))
8686
}

0 commit comments

Comments
 (0)