Skip to content

Commit

Permalink
fix(bls): Fixed wrong data size in constants
Browse files Browse the repository at this point in the history
  • Loading branch information
neithanmo committed Apr 22, 2024
1 parent a56e302 commit f2f4482
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/rust/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ extern crate no_std_compat as std;

use bls_signature::verify_bls_signature;

const BLS_SIGNATURE_SIZE: usize = 96;
const BLS_PUBLIC_KEY_SIZE: usize = 48;
const BLS_SIGNATURE_SIZE: usize = 48;
const BLS_PUBLIC_KEY_SIZE: usize = 96;

fn debug(_msg: &str) {}

Expand Down

0 comments on commit f2f4482

Please sign in to comment.