Skip to content

Commit 8fc3ef1

Browse files
committed
fix server and version
1 parent 05ddf13 commit 8fc3ef1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

block_io/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import json
1212
import requests
1313

14-
VERSION="1.0.0"
14+
VERSION="1.0.1"
1515

1616
class BlockIo(object):
1717

@@ -97,7 +97,7 @@ def __init__(self, api_key, pin, version = 1):
9797
self.pin = pin
9898
self.version = version
9999
self.encryption_key = None
100-
self.base_url = 'https://dev.block.io/api/v'+str(version)+'/API_CALL/?api_key='+api_key
100+
self.base_url = 'https://block.io/api/v'+str(version)+'/API_CALL/?api_key='+api_key
101101
self.withdraw_calls = ['withdraw', 'withdraw_from_address', 'withdraw_from_addresses', 'withdraw_from_label', 'withdraw_from_labels', 'withdraw_from_user_id', 'withdraw_from_users']
102102

103103
def __getattr__(self, attr, *args, **kwargs):

0 commit comments

Comments
 (0)