Update zcash_primitives/src/transaction/fees/zip317.rs

Co-authored-by: str4d <thestr4d@gmail.com>
This commit is contained in:
Andrew Arnott 2024-01-18 17:48:56 -07:00 committed by GitHub
parent aabee02247
commit 296e770ec8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -44,8 +44,8 @@ pub const MINIMUM_FEE: NonNegativeAmount = NonNegativeAmount::const_from_u64(10_
/// A [`FeeRule`] implementation that implements the [ZIP 317] fee rule.
///
/// This fee rule supports inputs from orchard, sapling, and transparent pools (P2PKH only).
/// An error will be returned if a coin containing a non-p2pkh script is provided as an input.
/// This fee rule supports Orchard, Sapling, and (P2PKH only) transparent inputs.
/// Returns an error if a coin containing a non-p2pkh script is provided as an input.
/// This fee rule may slightly overestimate fees in case where the user is attempting to spend more than ~150 transparent inputs.
///
/// [`FeeRule`]: crate::transaction::fees::FeeRule