Skip to content

Commit

Permalink
fixed no transactions
Browse files Browse the repository at this point in the history
  • Loading branch information
Franz Ehrlich committed Nov 12, 2017
1 parent b06916c commit 25482a0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion manager/ProcessManager.py
Expand Up @@ -148,7 +148,7 @@ class WalletRPCManager(ProcessManager):
def __init__(self, resources_path, wallet_file_path, wallet_password, app, log_level=2):
self.user_agent = str(uuid4().hex)
wallet_log_path = os.path.join(os.path.dirname(wallet_file_path), "electroneum-wallet-rpc.log")
wallet_rpc_args = u'%s/bin/electroneum-wallet-rpc --restricted-rpc --disable-rpc-login --wallet-file %s --log-file %s --rpc-bind-port %d --log-level 2 --daemon-port %d --password %s' % (resources_path, wallet_file_path, wallet_log_path, RPC_DAEMON_PORT+2, RPC_DAEMON_PORT, wallet_password)
wallet_rpc_args = u'%s/bin/electroneum-wallet-rpc --disable-rpc-login --wallet-file %s --log-file %s --rpc-bind-port %d --log-level %d --daemon-port %d --password %s' % (resources_path, wallet_file_path, wallet_log_path, RPC_DAEMON_PORT+2, log_level, RPC_DAEMON_PORT, wallet_password)

ProcessManager.__init__(self, wallet_rpc_args, "electroneum-wallet-rpc")

Expand Down
2 changes: 1 addition & 1 deletion webui/__init__.py
Expand Up @@ -401,7 +401,7 @@ def _load_wallet(self):
self.close()
return
else:
self.run_wallet_rpc(wallet_password, 0)
self.run_wallet_rpc(wallet_password, 2)
while not self.wallet_rpc_manager.is_ready():
self.hub.app_process_events(0.5)
if self.wallet_rpc_manager.is_invalid_password():
Expand Down

0 comments on commit 25482a0

Please sign in to comment.