Skip to content

Commit a324893

Browse files
committed
clippy fixes
Signed-off-by: Dave Huseby <[email protected]>
1 parent 6c0c495 commit a324893

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Idnetifier: Apache-2.0
2-
//!
2+
//! multisig
33
#![warn(missing_docs)]
44
#![deny(
55
trivial_casts,

src/views/bls12381.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ use multiutil::{Varbytes, Varuint};
1313
use 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)]

0 commit comments

Comments
 (0)