Adjust default signature fee for base-10 lamports (#6738)

This commit is contained in:
Michael Vines 2019-11-05 11:21:45 -07:00 committed by GitHub
parent c6931dcb07
commit 08973f9f05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ pub struct FeeCalculator {
pub burn_percent: u8,
}
pub const DEFAULT_TARGET_LAMPORTS_PER_SIGNATURE: u64 = 171_717;
pub const DEFAULT_TARGET_LAMPORTS_PER_SIGNATURE: u64 = 100_000;
pub const DEFAULT_TARGET_SIGNATURES_PER_SLOT: usize =
50_000 * DEFAULT_TICKS_PER_SLOT as usize / DEFAULT_TICKS_PER_SECOND as usize;
pub const DEFAULT_BURN_PERCENT: u8 = ((50usize * std::u8::MAX as usize) / 100usize) as u8;