mirror of
https://github.com/mimblewimble/grin-wallet.git
synced 2025-02-01 08:51:09 +03:00
fix yet another instance of fee fields at height 0 (#538)
This commit is contained in:
parent
42a2ee0302
commit
a4c82b99d2
1 changed files with 1 additions and 1 deletions
|
@ -907,7 +907,7 @@ where
|
|||
Some(tx) => {
|
||||
let mut slate = Slate::blank(2, false);
|
||||
slate.tx = Some(tx.clone());
|
||||
slate.fee_fields = tx.aggregate_fee_fields(0).unwrap();
|
||||
slate.fee_fields = tx.aggregate_fee_fields(2 * YEAR_HEIGHT).unwrap(); // apply fee mask past HF4
|
||||
slate.id = id.clone();
|
||||
slate.offset = tx.offset;
|
||||
slate.state = SlateState::Standard3;
|
||||
|
|
Loading…
Reference in a new issue