From 94d6b8acb23c4aed7fca7491acccd057efa54906 Mon Sep 17 00:00:00 2001 From: nighthawk24 Date: Thu, 18 Aug 2022 16:13:24 -0400 Subject: [PATCH] Add base_fee and marginal_fee fields. Co-authored-by: str4d --- zip-proportional-output-fee-mechanism-pofm.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/zip-proportional-output-fee-mechanism-pofm.rst b/zip-proportional-output-fee-mechanism-pofm.rst index 05ca1320..9c755f88 100644 --- a/zip-proportional-output-fee-mechanism-pofm.rst +++ b/zip-proportional-output-fee-mechanism-pofm.rst @@ -162,7 +162,9 @@ Specification ============= Wallets implementing this specification will use a conventional fee in the form of -min_fee = base_fee * max(1, #inputs + #outputs - 4) +base_fee = ... +marginal_fee = ... +min_fee = base_fee + marginal_fee * max(0, #inputs + #outputs - 4) starting from block 1,800,000 for Mainnet, or immediately on implementing this ZIP for Testnet.