mining: rename getCoinbaseTx() to ..RawTx()

This frees up the name getCoinbaseTx() for the next commit.

Changing a function name does not impact IPC clients, as they only
consider the function signature and sequence number.
This commit is contained in:
Sjors Provoost
2025-12-03 13:01:27 +01:00
parent 516ae5ede4
commit d59b4cdb57
5 changed files with 21 additions and 5 deletions

View File

@@ -888,7 +888,7 @@ public:
return m_block_template->vTxSigOpsCost;
}
CTransactionRef getCoinbaseTx() override
CTransactionRef getCoinbaseRawTx() override
{
return m_block_template->block.vtx[0];
}