From 1989b20ed59c4ca6264ad0bd693b0538bc1806c4 Mon Sep 17 00:00:00 2001 From: Ladd Hoffman Date: Mon, 15 Apr 2024 15:40:46 -0500 Subject: [PATCH] Remove console.log --- ethereum/contracts/core/Forum.sol | 1 - 1 file changed, 1 deletion(-) diff --git a/ethereum/contracts/core/Forum.sol b/ethereum/contracts/core/Forum.sol index 0ea5b43..c42dbf1 100644 --- a/ethereum/contracts/core/Forum.sol +++ b/ethereum/contracts/core/Forum.sol @@ -162,7 +162,6 @@ contract Forum is Reputation { refundToInbound -= int( post.reputation - balanceOf(post.author) ); - console.logInt(refundToInbound); _update(post.author, address(this), balanceOf(post.author)); } else { _update(post.author, address(this), post.reputation);