fix path to transaction broadcaster

This commit is contained in:
Jude Nelson
2018-05-15 16:10:08 -04:00
parent 92eee3cca8
commit 66c60204e6

View File

@@ -754,7 +754,7 @@ def transaction_broadcaster_start(config_path):
print 'blockstack-transaction-broadcaster is not installed'
return
p = subprocess.Popen('which blockstack-gaia-hub', shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
p = subprocess.Popen('which blockstack-transaction-broadcaster', shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
out, err = p.communicate()
rc = p.returncode
if rc != 0: