mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2025-08-05 21:14:32 -04:00
Monero confirmations are a u64
Trying to deserialize the number as a u32 caused deserialization errors.
This commit is contained in:
parent
1b63d5486d
commit
5616683d7d
5 changed files with 14 additions and 14 deletions
|
@ -12,7 +12,7 @@ pub struct Config {
|
|||
pub bitcoin_punish_timelock: PunishTimelock,
|
||||
pub bitcoin_network: bitcoin::Network,
|
||||
pub monero_avg_block_time: Duration,
|
||||
pub monero_finality_confirmations: u32,
|
||||
pub monero_finality_confirmations: u64,
|
||||
pub monero_network: monero::Network,
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue