Skip to content

Commit

Permalink
Fix sweep dependency (#253)
Browse files Browse the repository at this point in the history
* fix naming violation

* suppress style issue

* Fix dependency to cold staking wallet manager
  • Loading branch information
xandronus authored Dec 29, 2020
1 parent 6ce157b commit 2c5afb7
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
using Blockcore.Consensus.Chain;
using Blockcore.Consensus.ScriptInfo;
using Blockcore.Consensus.TransactionInfo;
using Blockcore.Features.BlockStore;
using Blockcore.Features.ColdStaking.Api.Controllers;
using Blockcore.Features.ColdStaking.Api.Models;
using Blockcore.Features.Wallet;
Expand Down Expand Up @@ -91,7 +92,8 @@ public ColdStakingManager(
ILoggerFactory loggerFactory,
IDateTimeProvider dateTimeProvider,
ISignals signals = null,
IBroadcasterManager broadcasterManager = null) : base(
IBroadcasterManager broadcasterManager = null,
IUtxoIndexer utxoIndexer = null) : base(
loggerFactory,
network,
chainIndexer,
Expand All @@ -103,7 +105,8 @@ public ColdStakingManager(
dateTimeProvider,
scriptAddressReader,
signals,
broadcasterManager)
broadcasterManager,
utxoIndexer)
{
Guard.NotNull(loggerFactory, nameof(loggerFactory));
Guard.NotNull(dateTimeProvider, nameof(dateTimeProvider));
Expand Down

0 comments on commit 2c5afb7

Please sign in to comment.