diff --git a/ol/changelog/5_0_8.md b/ol/changelog/5_0_8.md index 7dd2f39e28..aa8b8bf583 100644 --- a/ol/changelog/5_0_8.md +++ b/ol/changelog/5_0_8.md @@ -22,18 +22,19 @@ make bins install Recreate network configs ``` # backup validator config -mv ~/.0L/validator.node.yaml ~/.0L/validator.node.yaml.bak_20221204 +mv ~/.0L/validator.node.yaml ~/.0L/validator.node.yaml.bak_20220104 # create the new validator yaml. This will overwrite previous. -ol config --val +ol init --val # create settings for the VFN, private fullnode -ol config --vfn +ol init --vfn # next, copy the ~/.0L/vfn.node.yaml to the host machine of the fullnode. - - + + + ``` diff --git a/ol/txs/src/commands/autopay_batch_cmd.rs b/ol/txs/src/commands/autopay_batch_cmd.rs index 440aa5ddcb..1f3a044bef 100644 --- a/ol/txs/src/commands/autopay_batch_cmd.rs +++ b/ol/txs/src/commands/autopay_batch_cmd.rs @@ -49,7 +49,7 @@ impl Runnable for AutopayBatchCmd { }, }; println!("Latest Autopay id: {:?}", &start_id); - node.refresh_chain_info()?; + node.refresh_chain_info().unwrap(); let epoch = node.vitals.chain_view.unwrap().epoch; println!("The current epoch is: {}\n", epoch); @@ -176,4 +176,4 @@ fn get_autopay_start_id(node: &mut Node, account: AccountAddress) -> Result Ok(0), } -} \ No newline at end of file +}