Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: sipa/bitcoin
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: f8c099e220
Choose a base ref
...
head repository: sipa/bitcoin
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 450d2b2371
Choose a head ref
  • 4 commits
  • 9 files changed
  • 1 contributor

Commits on Oct 6, 2020

  1. scripted-diff: put ECDSA in name of signature functions

    In preparation for adding Schnorr versions of `CheckSig`, `VerifySignature`, and
    `ComputeEntry`, give them an ECDSA specific name.
    
    -BEGIN VERIFY SCRIPT-
    sed -i 's/CheckSig(/CheckECDSASignature(/g' $(git grep -l CheckSig ./src)
    sed -i 's/VerifySignature(/VerifyECDSASignature(/g' $(git grep -l VerifySignature ./src)
    sed -i 's/ComputeEntry(/ComputeEntryECDSA(/g' $(git grep -l ComputeEntry ./src)
    -END VERIFY SCRIPT-
    sipa committed Oct 6, 2020
    Configuration menu
    Copy the full SHA
    107b57d View commit details
    Browse the repository at this point in the history
  2. refactor: rename scriptPubKey in VerifyWitnessProgram to exec_script

    The old name is confusing, as it doesn't store a scriptPubKey, but the
    actually executed script.
    sipa committed Oct 6, 2020
    Configuration menu
    Copy the full SHA
    8bd2b4e View commit details
    Browse the repository at this point in the history

Commits on Oct 12, 2020

  1. refactor: keep spent outputs in PrecomputedTransactionData

    A BIP-341 signature message may commit to the scriptPubKeys and amounts
    of all spent outputs (including other ones than the input being signed
    for spends), so keep them available to signature hashing code.
    sipa committed Oct 12, 2020
    Configuration menu
    Copy the full SHA
    5d62e3a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    450d2b2 View commit details
    Browse the repository at this point in the history
Loading