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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
0 deletions
-
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) |
|
|