Skip to content

Commit e91bc61

Browse files
committed
.
1 parent 5593457 commit e91bc61

File tree

1 file changed

+2
-2
lines changed
  • circuits/app/proof_of_reserve/coins/src

1 file changed

+2
-2
lines changed

circuits/app/proof_of_reserve/coins/src/main.nr

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ struct CoinsDatabaseElement {
1818
amount: u64,
1919
}
2020

21-
struct OwnUtxo {
21+
struct Spending {
2222
witness: [u8; 72],
2323
pub_key: [u8; 65],
2424
}
2525

2626
fn main(
2727
const_message_hash: pub [u8; SHA256_HASH_SIZE],
2828
coins_database: [CoinsDatabaseElement; MAX_COINS_DATABASE_AMOUNT],
29-
own_utxos: [OwnUtxo; MAX_COINS_DATABASE_AMOUNT],
29+
own_utxos: [Spending; MAX_COINS_DATABASE_AMOUNT],
3030
) -> pub ([u8; SHA256_HASH_SIZE], u64) {
3131
let mut owned_amount = 0;
3232
let mut coins_hashes = [[0; SHA256_HASH_SIZE]; MAX_COINS_DATABASE_AMOUNT];

0 commit comments

Comments
 (0)