Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion indexer_app/handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
handle_new_pot,
handle_new_pot_factory,
handle_payout_challenge,
handle_payout_challenge_response,
handle_pot_application,
handle_pot_application_status_change,
handle_set_payouts,
Expand Down Expand Up @@ -270,7 +271,14 @@ async def handle_streamer_message(streamer_message: near_primitives.StreamerMess
case "challenge_payouts":
logger.info(f"challenge payout: {args_dict}")
await handle_payout_challenge(
args_dict, receiver_id, signer_id, receipt.receipt_id
args_dict, receiver_id, signer_id, receipt.receipt_id, created_at
)
break

case "admin_update_payouts_challenge":
logger.info(f"challenge payout: {args_dict}")
await handle_payout_challenge_response(
args_dict, receiver_id, signer_id, receipt.receipt_id, created_at
)
break

Expand Down
Loading