Amber nodes are monitored by CommitWatch. Gray nodes are sampled from authenticated GitHub public commit search and may not represent complete contribution history.
This commit fixes a single-word typo in a documentation comment. The word 'pre-tweaked' was changed to 'tweaked' to accurately describe the function's parameter. There is no code change and no security impact.
This commit only adds documentation comments to two Rust source files. It does not change any executable code, so it cannot introduce or fix a security vulnerability by itself. The comments explain an existing behavior of the push_slice() …
This commit fixes how the library builds Bitcoin script instructions when pushing a single zero byte (0x00) onto the stack. Previously, ScriptBuf::push_slice() emitted an invalid opcode (OP_PUSHBYTES_0, which does not exist in Bitcoin) for…
Script construction correctness bugInvalid Bitcoin opcode emitted for 0x00 byte pushPotential transaction/script invalidity if generated script is used
This commit only updates test code. It removes an 'ignore' marker from a test and corrects the expected byte output for pushing a single zero byte onto a Bitcoin script. There is no change to production code and no security issue.
This commit fixes a bug in the rust-bitcoin library where calling a function to push the single byte 0x00 onto a Bitcoin script would incorrectly push an empty byte array instead. In Bitcoin scripts, pushing the number 0 (empty) and pushin…
Script encoding bug: 0x00 byte pushed as empty array instead of one-byte pushPotential for non-standard or invalid transaction scripts depending on use caseCould affect protocols relying on exact script bytes (e.g., covenants, contracts, signature hashes)
This commit fixes a bug in the Rust Bitcoin library's script builder. When building a Bitcoin script, after pushing a number onto the stack, the builder would incorrectly remember the last opcode it had seen. This caused a later call to `p…
Script construction correctness bugBuilder state not invalidated after push_intpush_verify optimization could mispair with stale opcode