Skip to content

Commit

Permalink
Fix description
Browse files Browse the repository at this point in the history
  • Loading branch information
hieronx committed Aug 13, 2024
1 parent fab7651 commit d9bd950
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/factories/AggregatorV3OracleFactory.sol
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ contract VaultOracle is Auth, IAggregatorV3 {

// --- View methods ---
function description() external view returns (string memory) {
string memory assetSymbol = IERC20Metadata(vault.asset()).symbol();
string memory shareSymbol = IERC20Metadata(vault.share()).symbol();
return string.concat(assetSymbol, " / ", shareSymbol);
string memory assetSymbol = IERC20Metadata(vault.asset()).symbol();
return string.concat(shareSymbol, " / ", assetSymbol);
}
}

0 comments on commit d9bd950

Please # to comment.