Monero confirmations are a u64

Trying to deserialize the number as a u32 caused deserialization
errors.
This commit is contained in:
Thomas Eizinger 2021-03-29 12:05:20 +11:00
parent 1b63d5486d
commit 5616683d7d
No known key found for this signature in database
GPG key ID: 651AC83A6C6C8B96
5 changed files with 14 additions and 14 deletions

View file

@ -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,
}