From d233ebbc49e06dbb0273a1e609ee9b9b4395926c Mon Sep 17 00:00:00 2001 From: kilrau <19181985+kilrau@users.noreply.github.com> Date: Wed, 5 Aug 2020 13:25:19 +0200 Subject: [PATCH] fix: change buy/sell command examples to btc/usdt --- lib/cli/placeorder.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/cli/placeorder.ts b/lib/cli/placeorder.ts index 125ecbd5c..855e02c7a 100644 --- a/lib/cli/placeorder.ts +++ b/lib/cli/placeorder.ts @@ -39,8 +39,8 @@ export const placeOrderBuilder = (argv: Argv, side: OrderSide) => { describe: 'immediate-or-cancel', }) .example(`$0 ${command} 5 LTC/BTC .01 1337`, `place a limit order to ${command} 5 LTC @ 0.01 BTC with local order id 1337`) - .example(`$0 ${command} 3 LTC/BTC mkt`, `place a market order to ${command} 3 LTC for BTC`) - .example(`$0 ${command} 10 ZRX/GNT market`, `place a market order to ${command} 10 ZRX for GNT`); + .example(`$0 ${command} 3 BTC/USDT mkt`, `place a market order to ${command} 3 BTC for USDT`) + .example(`$0 ${command} 1 BTC/USDT market`, `place a market order to ${command} 1 BTC for USDT`); }; export const placeOrderHandler = async (argv: Arguments, side: OrderSide) => {