diff --git a/bitcoin/Cargo.toml b/bitcoin/Cargo.toml index 8c899897..5aede3ab 100644 --- a/bitcoin/Cargo.toml +++ b/bitcoin/Cargo.toml @@ -75,3 +75,6 @@ required-features = ["std", "rand-std"] [[example]] name = "taproot-psbt" required-features = ["std", "rand-std", "bitcoinconsensus"] + +[[example]] +name = "sighash" diff --git a/bitcoin/contrib/test_vars.sh b/bitcoin/contrib/test_vars.sh index 6cb6ddb3..26ef2480 100644 --- a/bitcoin/contrib/test_vars.sh +++ b/bitcoin/contrib/test_vars.sh @@ -7,4 +7,4 @@ FEATURES_WITH_STD="rand-std serde secp-recovery bitcoinconsensus-std base64 orde FEATURES_WITHOUT_STD="rand serde secp-recovery bitcoinconsensus base64 ordered" # Run and lint these examples. -EXAMPLES="ecdsa-psbt:std,bitcoinconsensus sign-tx-segwit-v0:rand-std sign-tx-taproot:rand-std taproot-psbt:bitcoinconsensus,rand-std" +EXAMPLES="ecdsa-psbt:std,bitcoinconsensus sign-tx-segwit-v0:rand-std sign-tx-taproot:rand-std taproot-psbt:bitcoinconsensus,rand-std sighash:std"