Skip to content

Commit

Permalink
Revert "Log absorb fee"
Browse files Browse the repository at this point in the history
This reverts commit 585bb94.
  • Loading branch information
william-gr committed Dec 20, 2023
1 parent 585bb94 commit f7ab73b
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions pool/pool.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@
from chia.full_node.signage_point import SignagePoint
from chia.types.end_of_slot_bundle import EndOfSubSlotBundle
from chia.types.blockchain_format.sized_bytes import bytes32
from chia.types.spend_bundle import estimate_fees
from chia.consensus.pot_iterations import calculate_iterations_quality
from chia.util.lru_cache import LRUCache
from chia.wallet.transaction_record import TransactionRecord
Expand Down Expand Up @@ -762,14 +761,11 @@ async def collect_pool_rewards_loop(self):

push_tx_response: Dict = await self.node_rpc_client.push_tx(spend_bundle)
if push_tx_response["status"] == "SUCCESS":
# See farmers_seen comment above
farmers_seen.add(rec.launcher_id)

self.log.info(
"Submitted transaction successfully %r with fee %r",
spend_bundle.name().hex(),
estimate_fees(spend_bundle),
f"Submitted transaction successfully: {spend_bundle.name().hex()}"
)
# See farmers_seen comment above
farmers_seen.add(rec.launcher_id)

# Best effort to make sure coins show in the same order in the wallet
# (confirmed block index)
Expand Down

0 comments on commit f7ab73b

Please sign in to comment.