Skip to content
Snippets Groups Projects

Add wizard key

Closed inso requested to merge wizard_key into dev
Files
7
+ 4
5
@@ -124,11 +124,10 @@ pub fn sync_ts<DC: DuniterConf>(
.expect("Fail to get ts current block !");
let (currency, current_ts_blockstamp) =
if let Some(row) = cursor.next().expect("cursor error") {
let block_id = BlockId(
row[1]
.as_integer()
.expect("Fail to parse current ts blockstamp !") as u32,
);
let block_id = BlockId(row[1]
.as_integer()
.expect("Fail to parse current ts blockstamp !")
as u32);
let block_hash = BlockHash(
Hash::from_hex(
row[0]
Loading