Browse Source

Merge pull request #6152 from JeremyRand/rpc-error-exit-code

RPC client: exit code 1 if RPC server returned error
master
ThomasV 5 years ago
committed by GitHub
parent
commit
1322fa6a08
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      run_electrum

1
run_electrum

@ -433,6 +433,7 @@ if __name__ == '__main__':
print_msg(result) print_msg(result)
elif type(result) is dict and result.get('error'): elif type(result) is dict and result.get('error'):
print_stderr(result.get('error')) print_stderr(result.get('error'))
sys_exit(1)
elif result is not None: elif result is not None:
print_msg(json_encode(result)) print_msg(json_encode(result))
sys_exit(0) sys_exit(0)

Loading…
Cancel
Save