File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 11// SPDX-License-Idnetifier: Apache-2.0
2- //!
2+ //! multisig
33#![ warn( missing_docs) ]
44#![ deny(
55 trivial_casts,
Original file line number Diff line number Diff line change @@ -13,13 +13,13 @@ use multiutil::{Varbytes, Varuint};
1313use std:: { collections:: BTreeMap , fmt} ;
1414
1515/// the name used to identify these signatures in non-Multikey formats
16- pub const ALGORITHM_NAME_G1 : & ' static str = "bls12_381-g1@multisig" ;
16+ pub const ALGORITHM_NAME_G1 : & str = "bls12_381-g1@multisig" ;
1717/// the name used to identify these signatures in non-Multikey formats
18- pub const ALGORITHM_NAME_G1_SHARE : & ' static str = "bls12_381-g1-share@multisig" ;
18+ pub const ALGORITHM_NAME_G1_SHARE : & str = "bls12_381-g1-share@multisig" ;
1919/// the name used to identify these signatures in non-Multikey formats
20- pub const ALGORITHM_NAME_G2 : & ' static str = "bls12_381-g2@multisig" ;
20+ pub const ALGORITHM_NAME_G2 : & str = "bls12_381-g2@multisig" ;
2121/// the name used to identify these signatures in non-Multikey formats
22- pub const ALGORITHM_NAME_G2_SHARE : & ' static str = "bls12_381-g2-share@multisig" ;
22+ pub const ALGORITHM_NAME_G2_SHARE : & str = "bls12_381-g2-share@multisig" ;
2323
2424/// The different signature scheme methods offered in the blsful BLS crate
2525#[ repr( u8 ) ]
You can’t perform that action at this time.
0 commit comments