mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-10 03:47:29 -03:00
contrib: minor doc improvements in verify-binaries
This commit is contained in:
parent
e2e5683afe
commit
ad841608d4
3 changed files with 3 additions and 3 deletions
|
@ -60,7 +60,7 @@ threshold of at least 10 trusted signatures:
|
|||
--min-good-sigs 10 pub 22.0-x86
|
||||
```
|
||||
|
||||
If you only want to download the binaries of certain platform, add the corresponding suffix, e.g.:
|
||||
If you only want to download the binaries for a certain platform, add the corresponding suffix, e.g.:
|
||||
|
||||
```sh
|
||||
./contrib/verify-binaries/verify.py pub 24.0.1-darwin
|
||||
|
|
|
@ -12,7 +12,7 @@ def main():
|
|||
expect_code(run_verify("", "pub", '0.32.awefa.12f9h'), 11, "Malformed version should fail")
|
||||
expect_code(run_verify('--min-good-sigs 20', "pub", "22.0"), 9, "--min-good-sigs 20 should fail")
|
||||
|
||||
print("- testing multisig verification (22.0)", flush=True)
|
||||
print("- testing verification (22.0)", flush=True)
|
||||
_220 = run_verify("--json", "pub", "22.0")
|
||||
try:
|
||||
result = json.loads(_220.stdout.decode())
|
||||
|
|
|
@ -530,7 +530,7 @@ def verify_published_handler(args: argparse.Namespace) -> ReturnCode:
|
|||
|
||||
# download binaries
|
||||
for _, binary_filename in hashes_to_verify:
|
||||
log.info(f"downloading {binary_filename}")
|
||||
log.info(f"downloading {binary_filename} to {WORKINGDIR}")
|
||||
success, output = download_with_wget(
|
||||
HOST1 + remote_dir + binary_filename, binary_filename)
|
||||
|
||||
|
|
Loading…
Reference in a new issue