Skip to content

Commit

Permalink
Merge pull request #3 from near/fix/parsed_event_data_type
Browse files Browse the repository at this point in the history
raw_transactions -> signed_transactions
  • Loading branch information
anthony-near authored Mar 12, 2024
2 parents fd6c4f9 + 4cda2d0 commit 5abd7a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gas_station_event_indexer.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ async def handle_streamer_message(streamer_message: near_primitives.StreamerMess
else:
payload = {
"foreign_chain_id": parsed_event_data["foreign_chain_id"],
"raw_transactions": parsed_event_data["signed_transactions"],
"signed_transactions": parsed_event_data["signed_transactions"],
}
response = requests.post(
url="localhost:3030/send_funding_and_user_signed_txns",
Expand Down

0 comments on commit 5abd7a5

Please sign in to comment.