Skip to content

Commit

Permalink
Fix tests compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
ichthus1604 committed Apr 21, 2024
1 parent 9931474 commit 0c66b5d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
using System.ComponentModel;
using Moq;
using NBitcoin;
using WalletWasabi.Fluent.Models.Transactions;
using WalletWasabi.Fluent.Models.UI;
using WalletWasabi.Fluent.Models.Wallets;
using WalletWasabi.Fluent.ViewModels.Wallets.Labels;
Expand Down Expand Up @@ -92,5 +93,10 @@ public IWalletStatsModel GetWalletStats()
{
throw new NotImplementedException();
}

public IPrivacySuggestionsModel GetPrivacySuggestionsModel(SendParameters sendParameters)
{
throw new NotImplementedException();
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
using System.Reactive.Disposables;
using DynamicData;
using NBitcoin;
using WalletWasabi.Fluent.Models.Transactions;
using WalletWasabi.Fluent.Models.Wallets;
using WalletWasabi.Fluent.ViewModels.Wallets.Labels;
using WalletWasabi.Wallets;
Expand Down Expand Up @@ -227,5 +228,10 @@ public IWalletStatsModel GetWalletStats()
{
throw new NotImplementedException();
}

public IPrivacySuggestionsModel GetPrivacySuggestionsModel(SendParameters sendParameters)
{
throw new NotImplementedException();
}
}
}

0 comments on commit 0c66b5d

Please sign in to comment.