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 committed Jul 31, 2023
1 parent ef89614 commit 1146ade
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 @@ -777,7 +777,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 1146ade

Please sign in to comment.