Skip to content
Merged
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
11 changes: 11 additions & 0 deletions contrib/DEBUGGING.md
Original file line number Diff line number Diff line change
Expand Up @@ -160,3 +160,14 @@ $ ag "query_subtensor"
```

Remember, debugging involves a lot of trial and error. Don't be discouraged if things don't work right away. Keep trying different things, and don't hesitate to ask for help if you need it.

## Problem With Block 5611654

If you are having problems decoding the extrinsics on block 5611654 of finney, it is due to a your Python
interpreter's default recursion limit. Simply change your system recursion limit, by setting it (default 1_000) to
any integer greater than or equal to 3049

```python
import sys
sys.setrecursionlimit(3050) # works
```