We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0eca5eb commit 8c203cfCopy full SHA for 8c203cf
contrib/signet/getcoins.py
@@ -31,6 +31,10 @@ def bitcoin_cli(rpc_command_and_params):
31
except FileNotFoundError:
32
print('The binary', args.cmd, 'could not be found.')
33
exit()
34
+ except subprocess.CalledProcessError:
35
+ cmdline = ' '.join(argv)
36
+ print(f'-----\nError while calling "{cmdline}" (see output above).')
37
+ exit()
38
39
40
if args.faucet.lower() == DEFAULT_GLOBAL_FAUCET:
0 commit comments