Skip to content

Commit

Permalink
chore: fix comment
Browse files Browse the repository at this point in the history
Signed-off-by: racerole <jiangyifeng@outlook.com>
  • Loading branch information
racerole committed Feb 20, 2025
1 parent 22ced1f commit b155394
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chia/full_node/full_node_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -1380,7 +1380,7 @@ async def send_transaction(
if status == MempoolInclusionStatus.SUCCESS:
response = wallet_protocol.TransactionAck(spend_name, uint8(status.value), error_name)
else:
# If if failed/pending, but it previously succeeded (in mempool), this is idempotence, return SUCCESS
# If it failed/pending, but it previously succeeded (in mempool), this is idempotence, return SUCCESS
if self.full_node.mempool_manager.get_spendbundle(spend_name) is not None:
response = wallet_protocol.TransactionAck(
spend_name, uint8(MempoolInclusionStatus.SUCCESS.value), None
Expand Down

0 comments on commit b155394

Please sign in to comment.