diff --git a/python_pip_examples/ticker.py b/python_pip_examples/ticker.py index 27e9616..c3f17f8 100644 --- a/python_pip_examples/ticker.py +++ b/python_pip_examples/ticker.py @@ -5,7 +5,7 @@ secret_key = '' or input('Enter your secret key: ') public_key = '' or input('Enter your public key: ') - restful_client = RestfulClient(secret_key, public_key) + restful_client = RestfulClient(public_key, secret_key) ticker_all_local = restful_client.ticker_all_local(crypto='LTC', fiat='GBP') print('ticker all local') @@ -49,4 +49,4 @@ ticker_changes_global_btceur = restful_client.ticker_changes_global('BTCEUR') print('Ticker including changes (for BTCEUR):') - print(ticker_changes_global_btceur) \ No newline at end of file + print(ticker_changes_global_btceur)