Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
hansieodendaal committed Apr 11, 2023
1 parent adb4f2e commit 31ac372
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ use std::{
};

use borsh::{BorshDeserialize, BorshSerialize};
use log::*;
use rand::rngs::OsRng;
use serde::{Deserialize, Serialize};
use tari_common_types::types::{
Expand Down Expand Up @@ -572,7 +571,7 @@ pub fn batch_verify_range_proofs(
Ok(_) => Ok(()),
Err(err_1) => {
for output in outputs.iter() {
match output.verify_range_proof(&prover) {
match output.verify_range_proof(prover) {
Ok(_) => {},
Err(err_2) => {
let proof = output.proof.to_hex();
Expand Down

0 comments on commit 31ac372

Please sign in to comment.