diff --git a/integration_tests/blockstack_integration_tests/scenarios/name_preorder_register_update_accounts.py b/integration_tests/blockstack_integration_tests/scenarios/name_preorder_register_update_accounts.py index 15b3ef500..b95db7146 100644 --- a/integration_tests/blockstack_integration_tests/scenarios/name_preorder_register_update_accounts.py +++ b/integration_tests/blockstack_integration_tests/scenarios/name_preorder_register_update_accounts.py @@ -169,14 +169,14 @@ def check( state_engine ): return False # only serviceFoo exists - accounts = blockstack_client.list_accounts( "foo.test", proxy=test_proxy, wallet_keys=wallet_keys ) + accounts = blockstack_client.list_accounts( "foo.test", proxy=test_proxy ) if len(accounts) != 1: print "wrong number of accounts" print json.dumps(accounts, indent=4, sort_keys=True) return False account = accounts['accounts'][0] - on_file_accounts = blockstack_client.get_account( "foo.test", "serviceFoo", "serviceFooID", proxy=test_proxy, wallet_keys=wallet_keys ) + on_file_accounts = blockstack_client.get_account( "foo.test", "serviceFoo", "serviceFooID", proxy=test_proxy ) if 'error' in on_file_accounts: print json.dumps(on_file_account, sort_keys=True, indent=4) return False diff --git a/integration_tests/blockstack_integration_tests/scenarios/name_preorder_register_update_accounts_data.py b/integration_tests/blockstack_integration_tests/scenarios/name_preorder_register_update_accounts_data.py index 9647124ee..6f12016d9 100644 --- a/integration_tests/blockstack_integration_tests/scenarios/name_preorder_register_update_accounts_data.py +++ b/integration_tests/blockstack_integration_tests/scenarios/name_preorder_register_update_accounts_data.py @@ -179,14 +179,14 @@ def check( state_engine ): return False # serviceFoo exists - accounts = blockstack_client.list_accounts( "foo.test", proxy=test_proxy, wallet_keys=wallet_keys ) + accounts = blockstack_client.list_accounts( "foo.test", proxy=test_proxy ) if len(accounts) != 1: print "wrong number of accounts" print json.dumps(accounts, indent=4, sort_keys=True) return False account = accounts['accounts'][0] - on_file_accounts = blockstack_client.get_account( "foo.test", "serviceFoo", "serviceFooID", proxy=test_proxy, wallet_keys=wallet_keys ) + on_file_accounts = blockstack_client.get_account( "foo.test", "serviceFoo", "serviceFooID", proxy=test_proxy ) if 'error' in on_file_accounts: print json.dumps(on_file_account, sort_keys=True, indent=4) return False diff --git a/integration_tests/blockstack_integration_tests/scenarios/name_preorder_register_update_accounts_data_nodatakey.py b/integration_tests/blockstack_integration_tests/scenarios/name_preorder_register_update_accounts_data_nodatakey.py index 40cef4978..460eff472 100644 --- a/integration_tests/blockstack_integration_tests/scenarios/name_preorder_register_update_accounts_data_nodatakey.py +++ b/integration_tests/blockstack_integration_tests/scenarios/name_preorder_register_update_accounts_data_nodatakey.py @@ -179,14 +179,14 @@ def check( state_engine ): return False # serviceFoo exists - accounts = blockstack_client.list_accounts( "foo.test", proxy=test_proxy, wallet_keys=wallet_keys ) + accounts = blockstack_client.list_accounts( "foo.test", proxy=test_proxy ) if len(accounts) != 1: print "wrong number of accounts" print json.dumps(accounts, indent=4, sort_keys=True) return False account = accounts['accounts'][0] - on_file_accounts = blockstack_client.get_account( "foo.test", "serviceFoo", "serviceFooID", proxy=test_proxy, wallet_keys=wallet_keys ) + on_file_accounts = blockstack_client.get_account( "foo.test", "serviceFoo", "serviceFooID", proxy=test_proxy ) if 'error' in on_file_accounts: print json.dumps(on_file_account, sort_keys=True, indent=4) return False diff --git a/integration_tests/blockstack_integration_tests/scenarios/name_preorder_register_update_accounts_nodatakey.py b/integration_tests/blockstack_integration_tests/scenarios/name_preorder_register_update_accounts_nodatakey.py index 7da7d0e79..0e0c382c7 100644 --- a/integration_tests/blockstack_integration_tests/scenarios/name_preorder_register_update_accounts_nodatakey.py +++ b/integration_tests/blockstack_integration_tests/scenarios/name_preorder_register_update_accounts_nodatakey.py @@ -169,14 +169,14 @@ def check( state_engine ): return False # only serviceFoo exists - accounts = blockstack_client.list_accounts( "foo.test", proxy=test_proxy, wallet_keys=wallet_keys ) + accounts = blockstack_client.list_accounts( "foo.test", proxy=test_proxy ) if len(accounts) != 1: print "wrong number of accounts" print json.dumps(accounts, indent=4, sort_keys=True) return False account = accounts['accounts'][0] - on_file_accounts = blockstack_client.get_account( "foo.test", "serviceFoo", "serviceFooID", proxy=test_proxy, wallet_keys=wallet_keys ) + on_file_accounts = blockstack_client.get_account( "foo.test", "serviceFoo", "serviceFooID", proxy=test_proxy ) if 'error' in on_file_accounts: print json.dumps(on_file_account, sort_keys=True, indent=4) return False diff --git a/integration_tests/blockstack_integration_tests/scenarios/name_preorder_register_update_apps.py b/integration_tests/blockstack_integration_tests/scenarios/name_preorder_register_update_apps.py index 3a5ef315a..2718d77fc 100644 --- a/integration_tests/blockstack_integration_tests/scenarios/name_preorder_register_update_apps.py +++ b/integration_tests/blockstack_integration_tests/scenarios/name_preorder_register_update_apps.py @@ -179,14 +179,14 @@ def check( state_engine ): return False # serviceFoo exists - accounts = blockstack_client.list_accounts( name, proxy=test_proxy, wallet_keys=wallet_keys ) + accounts = blockstack_client.list_accounts( name, proxy=test_proxy ) if len(accounts) != 1: print "wrong number of accounts" print json.dumps(accounts, indent=4, sort_keys=True) return False account = accounts['accounts'][0] - on_file_accounts = blockstack_client.get_account( name, "serviceFoo", "serviceFooID", proxy=test_proxy, wallet_keys=wallet_keys ) + on_file_accounts = blockstack_client.get_account( name, "serviceFoo", "serviceFooID", proxy=test_proxy ) if 'error' in on_file_accounts: print json.dumps(on_file_account, sort_keys=True, indent=4) return False