Skip to content

Commit bc53c45

Browse files
committed
Fix datatype for --order-count.
1 parent 2fdc9e8 commit bc53c45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

optimal-buy-gdax.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
parser.add_argument('--discount-step', type=float,
5252
help='discount step between orders (default: 0.01)',
5353
default=0.01)
54-
parser.add_argument('--order-count', type=float,
54+
parser.add_argument('--order-count', type=int,
5555
help='number of orders (default: 5)', default=5)
5656
parser.add_argument('--fiat-currency', help='Fiat currency (default: USD)',
5757
default='USD')

0 commit comments

Comments
 (0)