Skip to content

Commit

Permalink
rm console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
erhant committed Dec 27, 2024
1 parent d5f87c5 commit 9be8f48
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions test/LLMOracleCoordinator.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
pragma solidity ^0.8.20;

import {UnsafeUpgrades} from "@openzeppelin/foundry-upgrades/Upgrades.sol";
import {console} from "forge-std/console.sol";

import {LLMOracleTask, LLMOracleTaskParameters} from "../src/LLMOracleTask.sol";
import {LLMOracleRegistry, LLMOracleKind} from "../src/LLMOracleRegistry.sol";
Expand Down Expand Up @@ -365,7 +364,6 @@ contract LLMOracleCoordinatorTest is Helper {

// get generator allowances before function execution & respond
uint256 generatorAllowancesBefore = token.allowance(address(oracleCoordinator), generators[0]);
console.log("BEFORE:", generatorAllowancesBefore);
safeRespond(generators[0], output, 1);

// validator validate with just one score
Expand All @@ -378,7 +376,6 @@ contract LLMOracleCoordinatorTest is Helper {

// check that fee is given
uint256 generatorAllowanceAfter = token.allowance(address(oracleCoordinator), generators[0]);
console.log("AFTER:", generatorAllowanceAfter);
assertEq(generatorAllowanceAfter - generatorAllowancesBefore, generatorFee);

// withdraw platform fees
Expand Down

0 comments on commit 9be8f48

Please sign in to comment.