Implement BIP 370 PSBTv2 #21283

pull achow101 wants to merge 35 commits into bitcoin:master from achow101:psbt2 changing 24 files +1015 −240
  1. achow101 commented at 6:29 pm on February 23, 2021: member
    BIP 370 PSBTv2 introduces several new fields and different invariants for PSBT. This PR implements those new fields and restructures the PSBT implementation to match PSBTv2 but still remain compatible with PSBTv0.
  2. DrahtBot added the label GUI on Feb 23, 2021
  3. DrahtBot added the label RPC/REST/ZMQ on Feb 23, 2021
  4. DrahtBot added the label Wallet on Feb 23, 2021
  5. DrahtBot commented at 0:38 am on February 24, 2021: contributor

    The following sections might be updated with supplementary metadata relevant to reviewers and maintainers.

    Code Coverage

    For detailed information about the code coverage, see the test coverage report.

    Reviews

    See the guideline for information on the review process.

    Type Reviewers
    Stale ACK scgbckbone

    If your review is incorrectly listed, please react with 👎 to this comment and the bot will ignore it on the next update.

    Conflicts

    Reviewers, this pull request conflicts with the following ones:

    • #bitcoin-core/gui/733 (Deniability - a tool to automatically improve coin ownership privacy by denavila)
    • #30341 (WIP: Permit Combiner to strip bip32_deriv information by willcl-ark)
    • #30212 (rename TransactionErrors: MISSING_INPUTS and ALREADY_IN_CHAIN by willcl-ark)
    • #29855 (psbt: Check non witness utxo outpoint early by achow101)
    • #28710 (Remove the legacy wallet and BDB dependency by achow101)
    • #27792 (wallet: Deniability API (Unilateral Transaction Meta-Privacy) by denavila)
    • #26732 ([WIP] wallet: tx creation, don’t select outputs from txes that are being replaced by furszy)
    • #24963 (RPC/Wallet: Convert walletprocesspsbt to use options parameter by luke-jr)

    If you consider this pull request important, please also help to review the conflicting pull requests. Ideally, start with the one that should be merged first.

  6. achow101 force-pushed on Mar 5, 2021
  7. in src/rpc/rawtransaction.cpp:1193 in 6e4c04e3a2 outdated
    1192+        }
    1193+        if (psbtx.fallback_locktime != std::nullopt) {
    1194+            result.pushKV("fallback_locktime", static_cast<uint64_t>(*psbtx.fallback_locktime));
    1195+        }
    1196+        result.pushKV("input_count", psbtx.inputs.size());
    1197+        result.pushKV("output_count", psbtx.inputs.size());
    


    adamjonas commented at 3:50 pm on March 5, 2021:

    Getting a compile error consistent with the CI for these two lines:

     0rpc/rawtransaction.cpp:1192:16: error: call to member function 'pushKV' is ambiguous
     1        result.pushKV("input_count", psbtx.inputs.size());
     2        ~~~~~~~^~~~~~
     3./univalue/include/univalue.h:127:10: note: candidate function
     4    bool pushKV(const std::string& key, int64_t val_) {
     5         ^
     6./univalue/include/univalue.h:131:10: note: candidate function
     7    bool pushKV(const std::string& key, uint64_t val_) {
     8         ^
     9./univalue/include/univalue.h:135:10: note: candidate function
    10    bool pushKV(const std::string& key, bool val_) {
    11         ^
    12./univalue/include/univalue.h:139:10: note: candidate function
    13    bool pushKV(const std::string& key, int val_) {
    14         ^
    15./univalue/include/univalue.h:143:10: note: candidate function
    16    bool pushKV(const std::string& key, double val_) {
    17         ^
    18./univalue/include/univalue.h:118:10: note: candidate function
    19    bool pushKV(const std::string& key, const UniValue& val);
    20         ^
    21./univalue/include/univalue.h:119:10: note: candidate function not viable: no known conversion from 'std::__1::vector<PSBTInput, std::__1::allocator<PSBTInput> >::size_type' (aka 'unsigned long') to 'const std::string' (aka 'const basic_string<char, char_traits<char>, allocator<char> >') for 2nd argument
    22    bool pushKV(const std::string& key, const std::string& val_) {
    23         ^
    24./univalue/include/univalue.h:123:10: note: candidate function not viable: no known conversion from 'std::__1::vector<PSBTInput, std::__1::allocator<PSBTInput> >::size_type' (aka 'unsigned long') to 'const char *' for 2nd argument
    25    bool pushKV(const std::string& key, const char *val_) {
    26         ^
    27rpc/rawtransaction.cpp:1193:16: error: call to member function 'pushKV' is ambiguous
    28        result.pushKV("output_count", psbtx.inputs.size());
    29        ~~~~~~~^~~~~~
    30./univalue/include/univalue.h:127:10: note: candidate function
    31    bool pushKV(const std::string& key, int64_t val_) {
    32         ^
    33./univalue/include/univalue.h:131:10: note: candidate function
    34    bool pushKV(const std::string& key, uint64_t val_) {
    35         ^
    36./univalue/include/univalue.h:135:10: note: candidate function
    37    bool pushKV(const std::string& key, bool val_) {
    38         ^
    39./univalue/include/univalue.h:139:10: note: candidate function
    40    bool pushKV(const std::string& key, int val_) {
    41         ^
    42./univalue/include/univalue.h:143:10: note: candidate function
    43    bool pushKV(const std::string& key, double val_) {
    44         ^
    45./univalue/include/univalue.h:118:10: note: candidate function
    46    bool pushKV(const std::string& key, const UniValue& val);
    47         ^
    48./univalue/include/univalue.h:119:10: note: candidate function not viable: no known conversion from 'std::__1::vector<PSBTInput, std::__1::allocator<PSBTInput> >::size_type' (aka 'unsigned long') to 'const std::string' (aka 'const basic_string<char, char_traits<char>, allocator<char> >') for 2nd argument
    49    bool pushKV(const std::string& key, const std::string& val_) {
    50         ^
    51./univalue/include/univalue.h:123:10: note: candidate function not viable: no known conversion from 'std::__1::vector<PSBTInput, std::__1::allocator<PSBTInput> >::size_type' (aka 'unsigned long') to 'const char *' for 2nd argument
    52    bool pushKV(const std::string& key, const char *val_) {
    53         ^
    542 errors generated.
    

    achow101 commented at 5:51 pm on March 5, 2021:
    I can’t replicate this error at all, but I think I have fixed it.
  8. achow101 force-pushed on Mar 5, 2021
  9. DrahtBot added the label Needs rebase on Mar 17, 2021
  10. achow101 force-pushed on Mar 17, 2021
  11. achow101 force-pushed on Mar 17, 2021
  12. DrahtBot removed the label Needs rebase on Mar 17, 2021
  13. DrahtBot added the label Needs rebase on Mar 29, 2021
  14. achow101 force-pushed on Apr 1, 2021
  15. DrahtBot removed the label Needs rebase on Apr 1, 2021
  16. achow101 force-pushed on Apr 5, 2021
  17. achow101 force-pushed on Apr 5, 2021
  18. achow101 force-pushed on Apr 5, 2021
  19. achow101 force-pushed on Apr 5, 2021
  20. achow101 force-pushed on Apr 5, 2021
  21. achow101 force-pushed on Apr 5, 2021
  22. DrahtBot added the label Needs rebase on Apr 19, 2021
  23. achow101 force-pushed on Apr 19, 2021
  24. DrahtBot removed the label Needs rebase on Apr 19, 2021
  25. in src/psbt.cpp:27 in 776419b72e outdated
    18@@ -19,6 +19,14 @@ PartiallySignedTransaction::PartiallySignedTransaction(const CMutableTransaction
    19     SetupFromTx(tx);
    20 }
    21 
    22+PartiallySignedTransaction::PartiallySignedTransaction(uint32_t version) :
    23+    m_version(version)
    24+{
    25+    if (GetVersion() >= 2) {
    26+        tx_version = CTransaction::CURRENT_VERSION;
    


    adamjonas commented at 2:33 pm on April 21, 2021:
    This is erroring for me: psbt.cpp:(.text+0x4ca): undefined reference to 'CTransaction::CURRENT_VERSION'
  26. in src/psbt.h:808 in dd0ea68a16 outdated
    803@@ -661,6 +804,10 @@ struct PartiallySignedTransaction
    804 
    805         // Read global data
    806         bool found_sep = false;
    807+        uint32_t input_count = 0;
    808+        uint32_t output_count = 0;
    


    sanket1729 commented at 2:49 am on May 11, 2021:
    @achow101, the BIP says that this should CompactSize which I assume means VarInt in bitcoin context? But the implementation serializes this as uint32_t

    achow101 commented at 5:52 pm on May 11, 2021:
    Oops, fixed.
  27. achow101 force-pushed on May 11, 2021
  28. DrahtBot added the label Needs rebase on May 30, 2021
  29. achow101 force-pushed on May 30, 2021
  30. DrahtBot removed the label Needs rebase on May 30, 2021
  31. DrahtBot added the label Needs rebase on Jun 17, 2021
  32. achow101 force-pushed on Jun 18, 2021
  33. DrahtBot removed the label Needs rebase on Jun 19, 2021
  34. DrahtBot added the label Needs rebase on Aug 2, 2021
  35. achow101 force-pushed on Aug 2, 2021
  36. DrahtBot removed the label Needs rebase on Aug 2, 2021
  37. DrahtBot added the label Needs rebase on Sep 23, 2021
  38. achow101 force-pushed on Sep 23, 2021
  39. DrahtBot removed the label Needs rebase on Sep 23, 2021
  40. in src/psbt.h:437 in 015f133e9a outdated
    432@@ -428,6 +433,12 @@ struct PartiallySignedTransaction
    433         OverrideStream<Stream> os(&s, s.GetType(), s.GetVersion() | SERIALIZE_TRANSACTION_NO_WITNESS);
    434         SerializeToVector(os, *tx);
    435 
    436+        // PSBT version
    437+        if (m_version != std::nullopt && m_version > 0) {
    


    kiminuo commented at 11:37 am on October 1, 2021:

    I think it should be:

    if (m_version != std::nullopt && m_version > 0) { -> if (m_version != std::nullopt && *m_version > 0) {

    at least your next commit makes me think so (https://github.com/bitcoin/bitcoin/pull/21283/commits/92ff609c1ef9d3cd848d08b4bbec1cdbf4ae4f0b#diff-2fb519d85c6ae99cd87c94e5b7cba43ff2ddd031b2c523dd2ffb12e991c16494R438)


    achow101 commented at 5:02 pm on October 1, 2021:
    Done
  41. kiminuo commented at 11:52 am on October 1, 2021: contributor
    In c8b879609f02288975e3a6f714fbcfa1a93edcbc (moveonly: Move (Un)Serialize(To/From)Vector, (De)SerializeHDKeypaths to psbt module), should you possibly move/copy #include <streams.h>, #include <span.h> and #include <script/keyorigin.h>?
  42. achow101 force-pushed on Oct 1, 2021
  43. achow101 force-pushed on Oct 1, 2021
  44. kiminuo commented at 7:20 pm on October 2, 2021: contributor

    In commit 0bd656b64e72e29f255a860c71c542f5a9f18c17 (Separate individual HD Keypath serialization into separate functions)

    Should line:

    0if (value_len % 4 || value_len == 0) {
    

    be

    0if (value_len % 4 != 0 || value_len == 0) {
    

    to make it more explicit?

  45. kiminuo commented at 7:41 pm on October 2, 2021: contributor

    Is it possible that in commit 459fd3b0cc646f5ab02dd3cfd239c7a0418e6a32 (*Implement operator< for KeyOriginInfo and CExtPubKey *)

    0else if (a.pubkey > b.pubkey) {
    1    return false;
    2}
    

    is missing?

  46. achow101 force-pushed on Oct 3, 2021
  47. achow101 commented at 5:34 pm on October 3, 2021: member

    @kiminuo

    In commit 0bd656b (Separate individual HD Keypath serialization into separate functions)

    Should line:

    0if (value_len % 4 || value_len == 0) {
    

    be

    0if (value_len % 4 != 0 || value_len == 0) {
    

    to make it more explicit?

    This is moved code, so I will not be changing it.

    Is it possible that in commit 459fd3b (*Implement operator< for KeyOriginInfo and CExtPubKey *)

    0else if (a.pubkey > b.pubkey) {
    1    return false;
    2}
    

    is missing?

    Done.


    In the future, please leave such comments on the code as inline comments rather than comments like this. It makes it much easier to respond directly to specific questions such as these.

  48. in src/pubkey.h:368 in 4130efb9cd outdated
    306@@ -305,8 +307,20 @@ struct CExtPubKey {
    307         return !(a == b);
    308     }
    309 
    310+    friend bool operator<(const CExtPubKey &a, const CExtPubKey &b)
    311+    {
    312+        if (a.pubkey < b.pubkey) {
    313+            return true;
    314+        } else if (a.pubkey > b.pubkey) {
    


    kiminuo commented at 7:13 am on October 5, 2021:

    I believe that operator> implementation is missing for CPubKey class:

    0    friend bool operator>(const CPubKey& a, const CPubKey& b)
    1    {
    2        return a.vch[0] > b.vch[0] ||
    3               (a.vch[0] == b.vch[0] && memcmp(a.vch, b.vch, a.size()) > 0);
    4    }
    

    for this line to work and that’s why tests fail at the moment.


    achow101 commented at 6:13 pm on October 5, 2021:
    Done. Keep in mind this commit (and the first 15 of this PR) are part of #17034 so comments on them are better suited for that PR.
  49. in src/psbt.h:220 in 4130efb9cd outdated
    183@@ -56,68 +184,109 @@ struct PSBTInput
    184     CScriptWitness final_script_witness;
    185     std::map<CPubKey, KeyOriginInfo> hd_keypaths;
    186     std::map<CKeyID, SigPair> partial_sigs;
    187+    uint256 prev_txid;
    


    kiminuo commented at 7:15 am on October 5, 2021:
    Should #include <uint256.h> be added?

    achow101 commented at 6:13 pm on October 5, 2021:
    Done
  50. in src/psbt.h:256 in 4130efb9cd outdated
    198     bool IsNull() const;
    199     void FillSignatureData(SignatureData& sigdata) const;
    200     void FromSignatureData(const SignatureData& sigdata);
    201     void Merge(const PSBTInput& input);
    202-    PSBTInput() {}
    203+    bool GetUTXO(CTxOut& utxo) const;
    


    kiminuo commented at 7:19 am on October 5, 2021:
    Should the original comment be preserved in some way?

    achow101 commented at 6:13 pm on October 5, 2021:
    Done
  51. achow101 force-pushed on Oct 5, 2021
  52. DrahtBot added the label Needs rebase on Nov 16, 2021
  53. achow101 force-pushed on Nov 16, 2021
  54. DrahtBot removed the label Needs rebase on Nov 16, 2021
  55. achow101 force-pushed on Nov 23, 2021
  56. achow101 force-pushed on Nov 24, 2021
  57. achow101 force-pushed on Nov 24, 2021
  58. achow101 force-pushed on Nov 24, 2021
  59. DrahtBot added the label Needs rebase on Nov 29, 2021
  60. achow101 force-pushed on Dec 5, 2021
  61. DrahtBot removed the label Needs rebase on Dec 5, 2021
  62. DrahtBot added the label Needs rebase on Dec 8, 2021
  63. achow101 force-pushed on Dec 8, 2021
  64. DrahtBot removed the label Needs rebase on Dec 8, 2021
  65. DrahtBot added the label Needs rebase on Dec 9, 2021
  66. achow101 force-pushed on Dec 9, 2021
  67. DrahtBot removed the label Needs rebase on Dec 9, 2021
  68. achow101 force-pushed on Dec 9, 2021
  69. achow101 marked this as a draft on Dec 9, 2021
  70. achow101 force-pushed on Dec 10, 2021
  71. achow101 marked this as ready for review on Dec 10, 2021
  72. DrahtBot added the label Needs rebase on Dec 13, 2021
  73. achow101 force-pushed on Dec 13, 2021
  74. DrahtBot removed the label Needs rebase on Dec 13, 2021
  75. achow101 force-pushed on Feb 2, 2022
  76. DrahtBot added the label Needs rebase on Mar 30, 2022
  77. achow101 force-pushed on Mar 30, 2022
  78. DrahtBot removed the label Needs rebase on Mar 30, 2022
  79. DrahtBot added the label Needs rebase on Mar 31, 2022
  80. achow101 force-pushed on Mar 31, 2022
  81. DrahtBot removed the label Needs rebase on Mar 31, 2022
  82. DrahtBot added the label Needs rebase on Apr 15, 2022
  83. achow101 force-pushed on Apr 15, 2022
  84. DrahtBot removed the label Needs rebase on Apr 15, 2022
  85. DrahtBot added the label Needs rebase on Jun 28, 2022
  86. achow101 force-pushed on Jun 29, 2022
  87. DrahtBot removed the label Needs rebase on Jun 29, 2022
  88. achow101 force-pushed on Jul 5, 2022
  89. achow101 force-pushed on Jul 6, 2022
  90. DrahtBot added the label Needs rebase on Jul 13, 2022
  91. achow101 force-pushed on Jul 13, 2022
  92. DrahtBot removed the label Needs rebase on Jul 13, 2022
  93. achow101 force-pushed on Jul 18, 2022
  94. achow101 force-pushed on Jul 19, 2022
  95. DrahtBot added the label Needs rebase on Jul 27, 2022
  96. achow101 force-pushed on Jul 28, 2022
  97. DrahtBot removed the label Needs rebase on Jul 28, 2022
  98. DrahtBot added the label Needs rebase on Aug 1, 2022
  99. achow101 force-pushed on Aug 1, 2022
  100. DrahtBot removed the label Needs rebase on Aug 1, 2022
  101. achow101 force-pushed on Sep 20, 2022
  102. DrahtBot added the label Needs rebase on Oct 20, 2022
  103. achow101 force-pushed on Oct 21, 2022
  104. DrahtBot removed the label Needs rebase on Oct 21, 2022
  105. achow101 force-pushed on Nov 30, 2022
  106. DrahtBot added the label Needs rebase on Dec 9, 2022
  107. achow101 force-pushed on Dec 9, 2022
  108. DrahtBot removed the label Needs rebase on Dec 9, 2022
  109. DrahtBot added the label Needs rebase on Jan 17, 2023
  110. achow101 force-pushed on Jan 18, 2023
  111. DrahtBot removed the label Needs rebase on Jan 18, 2023
  112. in src/psbt.cpp:23 in be9e558f3e outdated
    19@@ -20,6 +20,14 @@ PartiallySignedTransaction::PartiallySignedTransaction(const CMutableTransaction
    20     SetupFromTx(tx);
    21 }
    22 
    23+PartiallySignedTransaction::PartiallySignedTransaction(uint32_t version) :
    


    instagibbs commented at 2:52 pm on January 27, 2023:
    does this constructor ever get used? I don’t see it being used

    achow101 commented at 9:00 pm on January 27, 2023:
    Dropped that commit.
  113. in src/wallet/rpc/spend.cpp:1698 in d4f0cdc8e9 outdated
    1694+    }
    1695+    if (psbt_version != 2 && psbt_version != 0) {
    1696+        throw JSONRPCError(RPC_INVALID_PARAMETER, "The PSBT version can only be 2 or 0");
    1697+    }
    1698+
    1699+    PartiallySignedTransaction psbtx(rawTx, /* version=*/ 2);
    


    instagibbs commented at 2:59 pm on January 27, 2023:
    should this be using psbt_version?

    achow101 commented at 9:00 pm on January 27, 2023:
    Yes, done
  114. in src/psbt.h:1172 in d4f0cdc8e9 outdated
    1178-     * @param[in] input_index Index of the input to retrieve the UTXO of
    1179-     * @return Whether the UTXO for the specified input was found
    1180-     */
    1181-    bool GetInputUTXO(CTxOut& utxo, int input_index) const;
    1182+    PartiallySignedTransaction(uint32_t version);
    1183+    explicit PartiallySignedTransaction(const CMutableTransaction& tx, uint32_t version = 0);
    


    instagibbs commented at 3:01 pm on January 27, 2023:
    If we’re internally defaulting to v2, probably better just to have constructor default for that value as well?

    achow101 commented at 9:00 pm on January 27, 2023:
    Added a commit changing it. It’s 0 when introduced in order to not break everything.
  115. in src/rpc/rawtransaction.cpp:1825 in d4f0cdc8e9 outdated
    1784 
    1785     // Create a blank psbt where everything will be added
    1786     PartiallySignedTransaction merged_psbt;
    1787+    merged_psbt.tx_version = best_version;
    1788+    merged_psbt.fallback_locktime = best_locktime;
    1789+    // TODO: Remove for PSBTv2
    


    instagibbs commented at 3:05 pm on January 27, 2023:
    this function is only for v0, why would we remove something for v2?

    achow101 commented at 8:40 pm on January 27, 2023:
    The intent is to enable this rpc for v2 in the future.

    instagibbs commented at 9:41 pm on January 27, 2023:
    ah, wasn’t clear to me
  116. in src/rpc/rawtransaction.cpp:1807 in d4f0cdc8e9 outdated
    1762         PartiallySignedTransaction psbtx;
    1763         std::string error;
    1764         if (!DecodeBase64PSBT(psbtx, txs[i].get_str(), error)) {
    1765             throw JSONRPCError(RPC_DESERIALIZATION_ERROR, strprintf("TX decode failed %s", error));
    1766         }
    1767+        if (psbtx.GetVersion() != 0) {
    


    instagibbs commented at 3:07 pm on January 27, 2023:
    Please add a test for this case

    achow101 commented at 8:42 pm on January 27, 2023:
    One was added in 318d818df7de30ac00551b655640512598ac1595
  117. achow101 force-pushed on Jan 27, 2023
  118. instagibbs commented at 2:42 pm on January 30, 2023: member

    Looking good so far.

    Ran this against CLN test suite and got no unexpected behavior.

  119. DrahtBot added the label Needs rebase on Feb 16, 2023
  120. achow101 force-pushed on Feb 17, 2023
  121. DrahtBot removed the label Needs rebase on Feb 17, 2023
  122. DrahtBot added the label Needs rebase on Mar 16, 2023
  123. achow101 force-pushed on Mar 17, 2023
  124. DrahtBot removed the label Needs rebase on Mar 17, 2023
  125. in src/rpc/rawtransaction.cpp:1809 in 6433fe1d16 outdated
    1769@@ -1770,6 +1770,9 @@ static RPCHelpMan joinpsbts()
    1770         if (!DecodeBase64PSBT(psbtx, txs[i].get_str(), error)) {
    1771             throw JSONRPCError(RPC_DESERIALIZATION_ERROR, strprintf("TX decode failed %s", error));
    1772         }
    1773+        if (psbtx.GetVersion() != 0) {
    1774+            throw JSONRPCError(RPC_INVALID_PARAMETER, "joinpsbts only operates on version 0 PSBTs");
    1775+        }
    


    unknown commented at 7:43 pm on April 12, 2023:
    Is there a reason for this restriction?

    achow101 commented at 7:51 pm on April 12, 2023:
    IIRC updating this RPC would require pretty significant changes to it that felt out of scope for this PR. I’ve left it as something to do in a followup in order to keep the scope of the PR limited to just the bare minimum to work with PSBTv2.
  126. DrahtBot added the label Needs rebase on Apr 21, 2023
  127. achow101 force-pushed on May 1, 2023
  128. achow101 force-pushed on May 1, 2023
  129. DrahtBot removed the label Needs rebase on May 1, 2023
  130. DrahtBot added the label CI failed on May 23, 2023
  131. achow101 force-pushed on May 27, 2023
  132. DrahtBot removed the label CI failed on May 27, 2023
  133. DrahtBot added the label Needs rebase on Jun 1, 2023
  134. achow101 force-pushed on Jun 1, 2023
  135. DrahtBot removed the label Needs rebase on Jun 1, 2023
  136. DrahtBot added the label CI failed on Aug 6, 2023
  137. maflcko commented at 9:28 am on August 17, 2023: member
    Needs rebase, if still relevant.
  138. DrahtBot added the label Needs rebase on Aug 17, 2023
  139. achow101 force-pushed on Aug 17, 2023
  140. DrahtBot removed the label Needs rebase on Aug 17, 2023
  141. DrahtBot removed the label CI failed on Aug 18, 2023
  142. DrahtBot added the label Needs rebase on Sep 12, 2023
  143. achow101 force-pushed on Sep 12, 2023
  144. DrahtBot removed the label Needs rebase on Sep 12, 2023
  145. DrahtBot added the label Needs rebase on Oct 2, 2023
  146. achow101 force-pushed on Oct 3, 2023
  147. DrahtBot removed the label Needs rebase on Oct 3, 2023
  148. DrahtBot added the label Needs rebase on Oct 16, 2023
  149. achow101 force-pushed on Oct 16, 2023
  150. DrahtBot removed the label Needs rebase on Oct 16, 2023
  151. DrahtBot added the label Needs rebase on Oct 25, 2023
  152. achow101 force-pushed on Oct 25, 2023
  153. DrahtBot removed the label Needs rebase on Oct 25, 2023
  154. DrahtBot added the label Needs rebase on Nov 15, 2023
  155. achow101 force-pushed on Nov 15, 2023
  156. DrahtBot removed the label Needs rebase on Nov 15, 2023
  157. DrahtBot added the label CI failed on Nov 27, 2023
  158. maflcko commented at 1:29 pm on November 27, 2023: member
    0psbt.cpp: In member function CMutableTransaction PartiallySignedTransaction::GetUnsignedTx() const:
    1psbt.cpp:107:35: error: transaction_identifier<has_witness>::transaction_identifier(const uint256&) [with bool has_witness = false] is private within this context
    2  107 |         txin.prevout.hash = input.prev_txid;
    3      |                                   ^~~~~~~~~
    
  159. achow101 force-pushed on Nov 27, 2023
  160. DrahtBot removed the label CI failed on Nov 28, 2023
  161. DrahtBot added the label Needs rebase on Dec 11, 2023
  162. achow101 force-pushed on Dec 11, 2023
  163. DrahtBot removed the label Needs rebase on Dec 11, 2023
  164. DrahtBot added the label CI failed on Jan 24, 2024
  165. achow101 commented at 3:00 pm on April 9, 2024: member
    Will split this up
  166. DrahtBot added the label Needs rebase on Apr 22, 2024
  167. achow101 force-pushed on Apr 25, 2024
  168. DrahtBot removed the label Needs rebase on Apr 25, 2024
  169. DrahtBot removed the label CI failed on Apr 26, 2024
  170. DrahtBot added the label Needs rebase on May 23, 2024
  171. achow101 force-pushed on May 29, 2024
  172. DrahtBot removed the label Needs rebase on May 29, 2024
  173. DrahtBot added the label Needs rebase on Jun 12, 2024
  174. Define psbtv2 field numbers 168773dfe8
  175. Change PSBT unknown fields test to use higher numbers
    Previously these tests were using 0x0f as the field number. Changed to
    use 0xf0 instead as it is unlikely we will hit that anytime soon.
    a5cb6e7fed
  176. Implement PSBTv2 fields de/ser c033e446d8
  177. Have PSBTInput and PSBTOutput know the PSBT's version 6e1983be66
  178. Enforce PSBT version constraints
    With PSBTv2, some fields are not allowed in PSBTv2, and some are
    required. Enforce those.
    576392fb90
  179. Add PSBT::CacheUnsignedTxPieces
    Fetches the PSBTv2 fields from PSBTv0's global unsigned tx. This allows
    us to pretend everything internally is a PSBTv2 and makes things easier
    to work with.
    3947056e28
  180. Call CacheUnsignedTxPieces in PSBT constructor 58a3f87219
  181. Convert PSBTv0 unsigned tx to PSBTv2 fields
    This is just a convenience and doesn't effect serialization.
    7a5f3ff49b
  182. Replace PSBT::GetInputUTXO with PSBTInput::GetUTXO
    Now that PSBTInput's track their own prevouts, there's no need for a
    PSBT global function to fetch input specific data.
    518e10237e
  183. Add PSBT::ComputeLockTime()
    Function to compute the lock time for the transaction
    5a6596185e
  184. Add PSBT::GetUnsignedTx
    A helper function for getting the unsigned transaction regardless of
    psbt version.
    8d7104c472
  185. Add PSBT::GetUniqueID
    The unique ID for PSBTv2 is different from v0. Use this function to get
    the ID without requiring the caller to know the version number.
    6ef4bc80da
  186. Change PSBT::AddInput to take just PSBTInput ad1b22cfa3
  187. Change PSBT::AddOutput to take just PSBTOutput 67e60c53a7
  188. Implement PSBTv2 field merging a4a61a3f9c
  189. Add PSBTInput::GetOutPoint
    Helper for getting the PSBTInput COutPoint
    169c828562
  190. Update SignPSBTInput for PSBTv2 a6482d2988
  191. Change PrecomputePSBTData to use GetUnsignedTx 67cf571c50
  192. Update FinalizeAndExtract for v2 c2b7f15338
  193. Update AnalyzePSBT for PSBTv2 43dca9acc1
  194. Update PSBT Operations Dialog for v2 039ffab692
  195. Update RPCs for PSBTv2 d55e0f42b1
  196. Update wallet for PSBTv2 92043678d8
  197. Implement PSBTv2 AddInput and AddOutput 0224cdea5d
  198. Update PSBTInputSignedAndVerified for PSBTv2 537a969a1e
  199. Update test_framework/psbt.py for PSBTv2 da25e28a1e
  200. Implement PSBTv2 in decodepsbt 1348ee101b
  201. Allow specifying PSBT version in constructor 6de3d13949
  202. Update PSBT::UpdatePSBTOutput to use GetUnsignedTx 78ae8a78a7
  203. Restrict joinpsbts to PSBTv0 only 22d7a2d52d
  204. Allow createpsbt and walletcreatefundedpsbt to take psbt version
    Use v2 for other RPCs. For some tests to work, PSBTv0 is set explicitly.
    213f6bc3f9
  205. Use GetUnsignedTx when serializing in PSBTv0
    If we are asked to make a PSBTv0, we may not necessarily have made an
    unsigned transaction. So instead use GetUnsignedTx which will either
    fetch one that already exists, or construct a new one from the stored
    data. Internally we may be storing a PSBTv0 like a PSBTv2, but still
    want to serialize those as v0.
    caa5d36f3b
  206. psbt: Change default psbt version to 2 108c3f4606
  207. tests: Add test vectors from BIP 370 89c94a7ca7
  208. tests: Add PSBT unit test for ComputeTimeLock 2619a5f209
  209. achow101 force-pushed on Jun 13, 2024
  210. achow101 force-pushed on Jun 13, 2024
  211. DrahtBot removed the label Needs rebase on Jun 13, 2024

github-metadata-mirror

This is a metadata mirror of the GitHub repository bitcoin/bitcoin. This site is not affiliated with GitHub. Content is generated from a GitHub metadata backup.
generated: 2024-07-03 10:13 UTC

This site is hosted by @0xB10C
More mirrored repositories can be found on mirror.b10c.me