Skip to content

Commit 636d60e

Browse files
committed
Fix basic_adding example
PR #80 deleted a couple lines
1 parent 187bff4 commit 636d60e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

examples/basic_adding.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,8 +219,10 @@ def refresh_position(self) -> None:
219219

220220

221221
def main():
222+
# Setting this to logging.DEBUG can be helpful for debugging websocket callback issues
222223
logging.basicConfig(level=logging.INFO)
223-
address, info, exchange = example
224+
address, info, exchange = example_utils.setup(constants.TESTNET_API_URL)
225+
BasicAdder(address, info, exchange)
224226

225227
if __name__ == "__main__":
226228
main()

0 commit comments

Comments
 (0)