@meteora-ag/dlmm 1.0.44-rc.1 → 1.0.44

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -7664,9 +7664,6 @@ var DLMM = class {
7664
7664
  */
7665
7665
  getEmissionRate() {
7666
7666
  const now = Date.now() / 1e3;
7667
- console.log("namgold debug rewardInfos", {
7668
- rewardInfos: this.lbPair.rewardInfos
7669
- });
7670
7667
  const [rewardOneEmissionRate, rewardTwoEmissionRate] = this.lbPair.rewardInfos.map(
7671
7668
  ({ rewardRate, rewardDurationEnd }) => now > rewardDurationEnd.toNumber() ? void 0 : rewardRate
7672
7669
  );