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
The protoc generates the code with absolute imports. Since we placed the generated files to the `generated` folder, we need to fix imports to avoid errors during the further steps:
111
111
112
112
1. In `geyser_pb2.py`:
113
-
- **Change from:** `import solana_storage_pb2 as solana__storage__pb2`
114
-
- **Change to:** `from . import solana_storage_pb2 as solana__storage__pb2`
0 commit comments