Skip to content

Commit

Permalink
chore: fix symbol bakc
Browse files Browse the repository at this point in the history
  • Loading branch information
Schlagonia committed Feb 1, 2024
1 parent 4ee8a33 commit a464970
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/TokenizedStrategy.sol
Original file line number Diff line number Diff line change
Expand Up @@ -1637,12 +1637,12 @@ contract TokenizedStrategy {

/**
* @notice Returns the symbol of the strategies token.
* @dev Will be 'ys + asset symbol + chainId'.
* @dev Will be 'ys + asset symbol'.
* @return . The symbol the strategy is using for its tokens.
*/
function symbol() external view returns (string memory) {
StrategyData storage S = _strategyStorage();
return string(abi.encodePacked("ys", S.asset.symbol()));
return
string(abi.encodePacked("ys", _strategyStorage().asset.symbol()));
}

/**
Expand Down

0 comments on commit a464970

Please sign in to comment.