Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Encapsulate Simplicity's mallocTransaction inside SimplicityTxData co… #1426

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/script/interpreter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2669,7 +2669,7 @@ void PrecomputedTransactionData::Init(const T& txTo, std::vector<CTxOut>&& spent
simplicityRawTx.version = txTo.nVersion;
simplicityRawTx.lockTime = txTo.nLockTime;

m_simplicity_tx_data = SimplicityTransactionUniquePtr(simplicity_elements_mallocTransaction(&simplicityRawTx));
m_simplicity_tx_data = SimplicityTxData(&simplicityRawTx);

m_bip341_taproot_ready = true;
}
Expand Down
32 changes: 25 additions & 7 deletions src/script/interpreter.h
Original file line number Diff line number Diff line change
Expand Up @@ -169,18 +169,36 @@ enum : uint32_t {

bool CheckSignatureEncoding(const std::vector<unsigned char> &vchSig, unsigned int flags, ScriptError* serror);

struct SimplicityTransactionDeleter
{
void operator()(transaction* ptr)
{
simplicity_elements_freeTransaction(ptr);
class SimplicityTxData {
public:
SimplicityTxData() {}

explicit SimplicityTxData(const rawTransaction* rawTx)
: m_transaction(simplicity_elements_mallocTransaction(rawTx)) {}

transaction* get() const noexcept {
return m_transaction.get();
}

explicit operator bool() const noexcept {
return static_cast<bool>(m_transaction);
}

private:
struct SimplicityTransactionDeleter
{
void operator()(transaction* ptr)
{
simplicity_elements_freeTransaction(ptr);
}
};

std::unique_ptr<transaction, SimplicityTransactionDeleter> m_transaction;
};
using SimplicityTransactionUniquePtr = std::unique_ptr<transaction, SimplicityTransactionDeleter>;

struct PrecomputedTransactionData
{
SimplicityTransactionUniquePtr m_simplicity_tx_data;
SimplicityTxData m_simplicity_tx_data;
// BIP341 precomputed data.
// These are single-SHA256, see https://github.com/bitcoin/bips/blob/master/bip-0341.mediawiki#cite_note-15.
uint256 m_prevouts_single_hash;
Expand Down