Skip to content

Commit 82cc894

Browse files
committed
refactor: remove price word
1 parent a87343c commit 82cc894

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/adapters/WstEthChainlinkAdapter.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import {ErrorsLib} from "../libraries/ErrorsLib.sol";
1313
/// @dev This contract should only be used as price feed for `ChainlinkOracle`.
1414
contract WstEthChainlinkAdapter is AggregatorV3Interface {
1515
uint8 public constant decimals = uint8(18);
16-
string public constant description = "wstETH/ETH exchange rate price";
16+
string public constant description = "wstETH/ETH exchange rate";
1717
uint256 public constant version = 1;
1818

1919
IStEth public immutable ST_ETH;

test/WstEthOracle.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ contract ChainlinkOracleTest is Test {
4646
}
4747

4848
function testConfig() public {
49-
assertEq(oracle.description(), "wstETH/ETH exchange rate price");
49+
assertEq(oracle.description(), "wstETH/ETH exchange rate");
5050
assertEq(oracle.version(), 1);
5151
}
5252

0 commit comments

Comments
 (0)