wip: Use same timelock value for refund and punish

This commit is contained in:
Lucas Soriano del Pino 2020-10-29 14:58:34 +11:00
parent 62c4501926
commit 9f32cd988e

View File

@ -13,7 +13,7 @@ pub mod tor;
pub const ONE_BTC: u64 = 100_000_000;
const REFUND_TIMELOCK: u32 = 10; // Relative timelock, this is number of blocks. TODO: What should it be?
const PUNISH_TIMELOCK: u32 = 20; // FIXME: What should this be?
const PUNISH_TIMELOCK: u32 = 10; // FIXME: What should this be?
pub type Never = std::convert::Infallible;