Skip to content

Commit

Permalink
fix for reddcoin withdrawal error
Browse files Browse the repository at this point in the history
  • Loading branch information
reddink authored and shamardy committed Aug 2, 2023
1 parent 80f7e6f commit a3e7572
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion mm2src/coins/utxo.rs
Original file line number Diff line number Diff line change
Expand Up @@ -778,7 +778,11 @@ impl UtxoCoinFields {
None
};

let n_time = if self.conf.is_pos { Some(now_sec_u32()) } else { None };
let n_time = if self.conf.is_pos || self.conf.is_posv {
Some(now_sec_u32())
} else {
None
};

TransactionInputSigner {
version: self.conf.tx_version,
Expand Down

0 comments on commit a3e7572

Please sign in to comment.