From d5c02d736197726dae161aafd4346ac70d925ba3 Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Thu, 26 Oct 2023 10:46:27 -0700 Subject: [PATCH] Add decode just recipe (#2592) --- justfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/justfile b/justfile index 6bbd24c574..95ef7dee0a 100644 --- a/justfile +++ b/justfile @@ -70,9 +70,7 @@ profile-tests: fuzz: #!/usr/bin/env bash set -euxo pipefail - cd fuzz - while true; do cargo +nightly fuzz run transaction-builder -- -max_total_time=60 cargo +nightly fuzz run runestone-decipher -- -max_total_time=60 @@ -80,6 +78,9 @@ fuzz: cargo +nightly fuzz run varint-encode -- -max_total_time=60 done +decode txid: + bitcoin-cli getrawtransaction {{txid}} | xxd -r -p - | cargo run decode + open: open http://localhost