Skip to content

Commit

Permalink
Bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gavbrennan committed Aug 19, 2024
1 parent 61b73ac commit aece3c5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/Qwack.Models/Models/AssetFxModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,8 @@ public void AddFixingDictionaries(Dictionary<string, IFixingDictionary> fixings)
private Portfolio _portfolio;
public Portfolio Portfolio => _portfolio;
public void AttachPortfolio(Portfolio portfolio) => _portfolio = portfolio;
public ICube PV(Currency reportingCurrency) => _portfolio.ParRate(this, reportingCurrency);
public ICube PV(Currency reportingCurrency) => _portfolio.PV(this, reportingCurrency);
public ICube ParRate(Currency reportingCurrency) => _portfolio.ParRate(this, reportingCurrency);

public IPvModel Rebuild(IAssetFxModel newVanillaModel, Portfolio portfolio)
{
Expand Down
2 changes: 1 addition & 1 deletion version.props
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<Project>
<PropertyGroup>
<VersionPrefix>0.8.83</VersionPrefix>
<VersionPrefix>0.8.84</VersionPrefix>
</PropertyGroup>
</Project>
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.8.83
0.8.84

0 comments on commit aece3c5

Please sign in to comment.