File tree Expand file tree Collapse file tree 2 files changed +2
-12
lines changed
Stratis.Features.FederatedPeg.IntegrationTests
Stratis.Features.FederatedPeg/SourceChain Expand file tree Collapse file tree 2 files changed +2
-12
lines changed Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ public async Task ParallelWithdrawalsToSidechain()
9494 ICrossChainTransferStore fedSideStore = context . FedSide1 . FullNode . NodeService < ICrossChainTransferStore > ( ) ;
9595 TestBase . WaitLoop ( ( ) =>
9696 {
97- ICrossChainTransfer [ ] fullySignedTransactions = fedSideStore . GetTransfersByStatus ( new [ ] { CrossChainTransferStatus . FullySigned } ) ;
97+ ICrossChainTransfer [ ] fullySignedTransactions = fedSideStore . GetTransfersByStatus ( new [ ] { CrossChainTransferStatus . FullySigned } ) ;
9898 return fullySignedTransactions . Length == toSend ;
9999 } ) ;
100100
Original file line number Diff line number Diff line change 44using System . Net . Http ;
55using NBitcoin ;
66using NLog ;
7- using Stratis . Bitcoin . Features . ExternalApi ;
87using Stratis . Bitcoin ;
8+ using Stratis . Bitcoin . Features . ExternalApi ;
99using Stratis . Bitcoin . Features . Wallet ;
10- using Stratis . Features . FederatedPeg . Conversion ;
1110using Stratis . Features . FederatedPeg . Interfaces ;
1211using Stratis . Features . PoA . Collateral . CounterChain ;
1312
1413namespace Stratis . Features . FederatedPeg . SourceChain
1514{
1615 public sealed class DepositExtractor : IDepositExtractor
1716 {
18- /// <summary>
19- /// This deposit extractor implementation only looks for a very specific deposit format.
20- /// Deposits will have 2 outputs when there is no change.
21- /// </summary>
22- private const int ExpectedNumberOfOutputsNoChange = 2 ;
23-
24- /// <summary> Deposits will have 3 outputs when there is change.</summary>
25- private const int ExpectedNumberOfOutputsChange = 3 ;
26-
2717 private readonly IFederatedPegSettings federatedPegSettings ;
2818 private readonly Network network ;
2919 private readonly IOpReturnDataReader opReturnDataReader ;
You can’t perform that action at this time.
0 commit comments