Skip to content

Commit

Permalink
removing debug logs from new colony route
Browse files Browse the repository at this point in the history
Signed-off-by: JonathanScialpi <scialpi27@gmail.com>
  • Loading branch information
JonathanScialpi committed Jul 12, 2022
1 parent a95be6c commit 3d2359a
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions backend/src/routes/colony-route.ts
Expand Up @@ -28,10 +28,7 @@ async function getReputationForFarmer(req: Request, res: Response){
const colonyNetwork = new ColonyNetwork(farmerSigner);
const colony = await colonyNetwork.getColony(process.env.HEIFER_COLONY_CONTRACT_ADDRESS!);
const balance = await colony.getBalance();
console.log("balance: ", balance);
const reputation = await colony.getReputation(farmerEthAddress);
console.log("reputation: ", reputation)
console.log("reputationReport: ", getReputationReport(req.body))
res.json({
colony_balance : balance.toString(),
reputation : reputation.toString(),
Expand Down

0 comments on commit 3d2359a

Please sign in to comment.