Add test for recursive executor

This commit is contained in:
rishflab 2020-11-30 13:25:11 +11:00
parent dca15b6872
commit 24631d464d
9 changed files with 175 additions and 127 deletions

View file

@ -14,8 +14,8 @@ pub mod state;
pub mod storage;
pub mod tor;
const REFUND_TIMELOCK: u32 = 10; // Relative timelock, this is number of blocks. TODO: What should it be?
const PUNISH_TIMELOCK: u32 = 10; // FIXME: What should this be?
pub const REFUND_TIMELOCK: u32 = 10; // Relative timelock, this is number of blocks. TODO: What should it be?
pub const PUNISH_TIMELOCK: u32 = 10; // FIXME: What should this be?
pub type Never = std::convert::Infallible;