Remove static lifetime on some constants

This commit is contained in:
Deirdre Connolly 2020-04-03 04:46:07 -04:00 committed by Deirdre Connolly
parent 7e2ae70d66
commit 4acce5aa30
1 changed files with 2 additions and 2 deletions

View File

@ -15,8 +15,8 @@ use crate::{
/// Human-Readable Parts for input to bech32 encoding.
mod human_readable_parts {
pub const MAINNET: &'static str = "zs";
pub const TESTNET: &'static str = "ztestsapling";
pub const MAINNET: &str = "zs";
pub const TESTNET: &str = "ztestsapling";
}
///