Browse Source
RPC client: exit code 1 if RPC server returned error
master
JeremyRand
5 years ago
No known key found for this signature in database
GPG Key ID: B3F2D165786D6570
1 changed files with
1 additions and
0 deletions
-
run_electrum
|
|
@ -433,6 +433,7 @@ if __name__ == '__main__': |
|
|
|
print_msg(result) |
|
|
|
elif type(result) is dict and result.get('error'): |
|
|
|
print_stderr(result.get('error')) |
|
|
|
sys_exit(1) |
|
|
|
elif result is not None: |
|
|
|
print_msg(json_encode(result)) |
|
|
|
sys_exit(0) |
|
|
|