Commit 722acfb5 authored by Jeremy Bokobza's avatar Jeremy Bokobza

Better assessment for the wallet tip i nthe sync manager

parent 93282ad4
...@@ -21,7 +21,7 @@ namespace Breeze.Wallet ...@@ -21,7 +21,7 @@ namespace Breeze.Wallet
private readonly ILogger logger; private readonly ILogger logger;
private readonly Signals signals; private readonly Signals signals;
protected ChainedBlock walletTip; private ChainedBlock walletTip;
public LightWalletSyncManager(ILoggerFactory loggerFactory, IWalletManager walletManager, ConcurrentChain chain, Network network, public LightWalletSyncManager(ILoggerFactory loggerFactory, IWalletManager walletManager, ConcurrentChain chain, Network network,
BlockNotification blockNotification, Signals signals) BlockNotification blockNotification, Signals signals)
...@@ -37,13 +37,12 @@ namespace Breeze.Wallet ...@@ -37,13 +37,12 @@ namespace Breeze.Wallet
/// <inheritdoc /> /// <inheritdoc />
public async Task Initialize() public async Task Initialize()
{ {
this.walletTip = this.chain.GetBlock(this.walletManager.WalletTipHash);
if (this.walletTip == null)
throw new WalletException("the wallet tip was not found in the main chain");
// get the chain headers. This needs to be up-to-date before we really do anything // get the chain headers. This needs to be up-to-date before we really do anything
await this.WaitForChainDownloadAsync(); await this.WaitForChainDownloadAsync();
// if there is no wallet created yet, the wallet tip is the chain tip.
this.walletTip = !this.walletManager.Wallets.Any() ? this.chain.Tip : this.chain.GetBlock(this.walletManager.WalletTipHash);
// subscribe to receiving blocks and transactions // subscribe to receiving blocks and transactions
BlockSubscriber sub = new BlockSubscriber(this.signals.Blocks, new BlockObserver(this)); BlockSubscriber sub = new BlockSubscriber(this.signals.Blocks, new BlockObserver(this));
sub.Subscribe(); sub.Subscribe();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment