//thruster-protocol/thruster-clmm/contracts/ThrusterPool.sol
constructor() {
        int24 _tickSpacing;
        BLAST.configureClaimableGas();
        //@audit Pool will not in normal circumstance be able to receive ETH in balance and will not be eligible for ETH rewards.
|>      BLAST.configureClaimableYield();
        USDB.configure(YieldMode.CLAIMABLE);
        WETHB.configure(YieldMode.CLAIMABLE);
...
//thruster-protocol/thruster-cfmm/contracts/ThrusterYield.sol
    constructor(address _manager) public {
        BLAST.configureClaimableGas();
|>      BLAST.configureClaimableYield();
        USDB.configure(IERC20Rebasing.YieldMode.CLAIMABLE);
        WETHB.configure(IERC20Rebasing.YieldMode.CLAIMABLE);
        manager = _manager;
    }
...
