Skip to content

Commit

Permalink
Make NUMS value public
Browse files Browse the repository at this point in the history
NUMS is often needed by people importing the library, so might be good
to make it public.
  • Loading branch information
cygnet3 committed Apr 24, 2024
1 parent 1b5bc85 commit 51ec9f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ pub mod receiving;
pub mod sending;

// NUMS_H (defined in BIP340)
const NUMS_H: [u8; 32] = [
pub const NUMS_H: [u8; 32] = [
0x50, 0x92, 0x9b, 0x74, 0xc1, 0xa0, 0x49, 0x54, 0xb7, 0x8b, 0x4b, 0x60, 0x35, 0xe9, 0x7a, 0x5e,
0x07, 0x8a, 0x5a, 0x0f, 0x28, 0xec, 0x96, 0xd5, 0x47, 0xbf, 0xee, 0x9a, 0xce, 0x80, 0x3a, 0xc0,
];
Expand Down

0 comments on commit 51ec9f8

Please sign in to comment.