We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 187bff4 commit 636d60eCopy full SHA for 636d60e
examples/basic_adding.py
@@ -219,8 +219,10 @@ def refresh_position(self) -> None:
219
220
221
def main():
222
+ # Setting this to logging.DEBUG can be helpful for debugging websocket callback issues
223
logging.basicConfig(level=logging.INFO)
- address, info, exchange = example
224
+ address, info, exchange = example_utils.setup(constants.TESTNET_API_URL)
225
+ BasicAdder(address, info, exchange)
226
227
if __name__ == "__main__":
228
main()
0 commit comments