You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,7 @@ In order to poll the substream, you will need to call the `poll()` function on t
39
39
print(sb.output_modules)
40
40
41
41
# Poll the module and return a list of SubstreamOutput objects in the order of the specified modules
42
-
result = sb.poll(["map_swap_events"], start_block=10000835, end_block=10000835+20000)
42
+
result = sb.poll("map_swap_events", start_block=10000835, end_block=10000835+20000)
43
43
```
44
44
45
45
With the default inputs, this function outputs Pandas Dataframes after streaming all blocks between the start_block and end_block. However depending on how this function is called, a dict object is returned. The `poll()` function has a number of inputs
0 commit comments