ZIP-313 change default fee amount.

This commit is contained in:
Kevin Gorham 2020-11-16 19:59:28 -05:00 committed by Jack Grigg
parent 97ef1592bb
commit 53ebc378cc
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ use std::ops::{Add, AddAssign, Sub, SubAssign};
pub const COIN: i64 = 1_0000_0000;
pub const MAX_MONEY: i64 = 21_000_000 * COIN;
pub const DEFAULT_FEE: Amount = Amount(10000);
pub const DEFAULT_FEE: Amount = Amount(1000);
/// A type-safe representation of some quantity of Zcash.
///