refactor: Allow for no chain update

This commit is contained in:
Vladimir Fomene
2023-08-24 16:03:47 +03:00
committed by 志宇
parent 68572bfd2e
commit f42f8b8ff1
2 changed files with 9 additions and 5 deletions

View File

@@ -64,10 +64,10 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
let wallet_update = WalletUpdate {
last_active_indices: keychain_update,
graph: graph_update,
chain: local_chain::Update {
chain: Some(local_chain::Update {
tip: update_tip,
introduce_older_blocks: true,
},
}),
};
wallet.apply_update(wallet_update)?;
wallet.commit()?;