Skip to content

Commit

Permalink
fix: append result to list
Browse files Browse the repository at this point in the history
  • Loading branch information
nick8319 committed Jun 12, 2023
1 parent 56f4d0f commit 35ff019
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gnosis/eth/ethereum_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -1270,7 +1270,7 @@ def raw_batch_request(
)
raise ValueError(f"Batch request error: {results}")

all_results.extend(results)
all_results.append(results)

logger.info("Batch request all_results: %s", all_results)

Expand Down

0 comments on commit 35ff019

Please sign in to comment.