From 889b2c47413be85c362ba847b15edcb9e74265c4 Mon Sep 17 00:00:00 2001 From: LimpidCrypto Date: Wed, 13 Apr 2022 22:08:06 +0200 Subject: [PATCH 1/3] Initial commit --- xrpl_trading_bot/clients/main.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/xrpl_trading_bot/clients/main.py b/xrpl_trading_bot/clients/main.py index 41aa572..8385dd2 100644 --- a/xrpl_trading_bot/clients/main.py +++ b/xrpl_trading_bot/clients/main.py @@ -36,3 +36,7 @@ async def xrp_request_async( responses = await gather(*requests_for_gather) return list(responses) + + +def submit_transactions(): + pass From 4027e642d6b572be68d7aeab00308fe71ab4a311 Mon Sep 17 00:00:00 2001 From: LimpidCrypto Date: Wed, 13 Apr 2022 22:17:36 +0200 Subject: [PATCH 2/3] Add: Async; Fix: return type --- xrpl_trading_bot/clients/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xrpl_trading_bot/clients/main.py b/xrpl_trading_bot/clients/main.py index 8385dd2..4550df7 100644 --- a/xrpl_trading_bot/clients/main.py +++ b/xrpl_trading_bot/clients/main.py @@ -38,5 +38,5 @@ async def xrp_request_async( return list(responses) -def submit_transactions(): +def submit_transactions() -> None: pass From 12bb3381d558a070a81d17833027e54bd0dbfe2c Mon Sep 17 00:00:00 2001 From: LimpidCrypto <97235361+LimpidCrypto@users.noreply.github.com> Date: Wed, 13 Apr 2022 22:20:44 +0200 Subject: [PATCH 3/3] Update xrpl_trading_bot/clients/main.py --- xrpl_trading_bot/clients/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xrpl_trading_bot/clients/main.py b/xrpl_trading_bot/clients/main.py index 4550df7..4f72ac0 100644 --- a/xrpl_trading_bot/clients/main.py +++ b/xrpl_trading_bot/clients/main.py @@ -38,5 +38,5 @@ async def xrp_request_async( return list(responses) -def submit_transactions() -> None: +async def submit_transactions() -> None: pass