Add new rpc call: abandontransaction
Unconfirmed transactions that are not in your mempool either due to eviction or other means may be unlikely to be mined. abandontransaction gives the wallet a way to no longer consider as spent the coins that are inputs to such a transaction. All dependent transactions in the wallet will also be marked as abandoned.
This commit is contained in:
parent
9e69717254
commit
01e06d1fa3
5 changed files with 125 additions and 12 deletions
|
@ -346,6 +346,7 @@ static const CRPCCommand vRPCCommands[] =
|
||||||
{ "wallet", "getreceivedbyaccount", &getreceivedbyaccount, false },
|
{ "wallet", "getreceivedbyaccount", &getreceivedbyaccount, false },
|
||||||
{ "wallet", "getreceivedbyaddress", &getreceivedbyaddress, false },
|
{ "wallet", "getreceivedbyaddress", &getreceivedbyaddress, false },
|
||||||
{ "wallet", "gettransaction", &gettransaction, false },
|
{ "wallet", "gettransaction", &gettransaction, false },
|
||||||
|
{ "wallet", "abandontransaction", &abandontransaction, false },
|
||||||
{ "wallet", "getunconfirmedbalance", &getunconfirmedbalance, false },
|
{ "wallet", "getunconfirmedbalance", &getunconfirmedbalance, false },
|
||||||
{ "wallet", "getwalletinfo", &getwalletinfo, false },
|
{ "wallet", "getwalletinfo", &getwalletinfo, false },
|
||||||
{ "wallet", "importprivkey", &importprivkey, true },
|
{ "wallet", "importprivkey", &importprivkey, true },
|
||||||
|
|
|
@ -221,6 +221,7 @@ extern UniValue listaddressgroupings(const UniValue& params, bool fHelp);
|
||||||
extern UniValue listaccounts(const UniValue& params, bool fHelp);
|
extern UniValue listaccounts(const UniValue& params, bool fHelp);
|
||||||
extern UniValue listsinceblock(const UniValue& params, bool fHelp);
|
extern UniValue listsinceblock(const UniValue& params, bool fHelp);
|
||||||
extern UniValue gettransaction(const UniValue& params, bool fHelp);
|
extern UniValue gettransaction(const UniValue& params, bool fHelp);
|
||||||
|
extern UniValue abandontransaction(const UniValue& params, bool fHelp);
|
||||||
extern UniValue backupwallet(const UniValue& params, bool fHelp);
|
extern UniValue backupwallet(const UniValue& params, bool fHelp);
|
||||||
extern UniValue keypoolrefill(const UniValue& params, bool fHelp);
|
extern UniValue keypoolrefill(const UniValue& params, bool fHelp);
|
||||||
extern UniValue walletpassphrase(const UniValue& params, bool fHelp);
|
extern UniValue walletpassphrase(const UniValue& params, bool fHelp);
|
||||||
|
|
|
@ -1764,6 +1764,40 @@ UniValue gettransaction(const UniValue& params, bool fHelp)
|
||||||
return entry;
|
return entry;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
UniValue abandontransaction(const UniValue& params, bool fHelp)
|
||||||
|
{
|
||||||
|
if (!EnsureWalletIsAvailable(fHelp))
|
||||||
|
return NullUniValue;
|
||||||
|
|
||||||
|
if (fHelp || params.size() != 1)
|
||||||
|
throw runtime_error(
|
||||||
|
"abandontransaction \"txid\"\n"
|
||||||
|
"\nMark in-wallet transaction <txid> as abandoned\n"
|
||||||
|
"This will mark this transaction and all its in-wallet descendants as abandoned which will allow\n"
|
||||||
|
"for their inputs to be respent. It can be used to replace \"stuck\" or evicted transactions.\n"
|
||||||
|
"It only works on transactions which are not included in a block and are not currently in the mempool.\n"
|
||||||
|
"It has no effect on transactions which are already conflicted or abandoned.\n"
|
||||||
|
"\nArguments:\n"
|
||||||
|
"1. \"txid\" (string, required) The transaction id\n"
|
||||||
|
"\nResult:\n"
|
||||||
|
"\nExamples:\n"
|
||||||
|
+ HelpExampleCli("abandontransaction", "\"1075db55d416d3ca199f55b6084e2115b9345e16c5cf302fc80e9d5fbf5d48d\"")
|
||||||
|
+ HelpExampleRpc("abandontransaction", "\"1075db55d416d3ca199f55b6084e2115b9345e16c5cf302fc80e9d5fbf5d48d\"")
|
||||||
|
);
|
||||||
|
|
||||||
|
LOCK2(cs_main, pwalletMain->cs_wallet);
|
||||||
|
|
||||||
|
uint256 hash;
|
||||||
|
hash.SetHex(params[0].get_str());
|
||||||
|
|
||||||
|
if (!pwalletMain->mapWallet.count(hash))
|
||||||
|
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid or non-wallet transaction id");
|
||||||
|
if (!pwalletMain->AbandonTransaction(hash))
|
||||||
|
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Transaction not eligible for abandonment");
|
||||||
|
|
||||||
|
return NullUniValue;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
UniValue backupwallet(const UniValue& params, bool fHelp)
|
UniValue backupwallet(const UniValue& params, bool fHelp)
|
||||||
{
|
{
|
||||||
|
|
|
@ -48,6 +48,8 @@ bool fSendFreeTransactions = DEFAULT_SEND_FREE_TRANSACTIONS;
|
||||||
*/
|
*/
|
||||||
CFeeRate CWallet::minTxFee = CFeeRate(DEFAULT_TRANSACTION_MINFEE);
|
CFeeRate CWallet::minTxFee = CFeeRate(DEFAULT_TRANSACTION_MINFEE);
|
||||||
|
|
||||||
|
const uint256 CMerkleTx::ABANDON_HASH(uint256S("0000000000000000000000000000000000000000000000000000000000000001"));
|
||||||
|
|
||||||
/** @defgroup mapWallet
|
/** @defgroup mapWallet
|
||||||
*
|
*
|
||||||
* @{
|
* @{
|
||||||
|
@ -455,8 +457,11 @@ bool CWallet::IsSpent(const uint256& hash, unsigned int n) const
|
||||||
{
|
{
|
||||||
const uint256& wtxid = it->second;
|
const uint256& wtxid = it->second;
|
||||||
std::map<uint256, CWalletTx>::const_iterator mit = mapWallet.find(wtxid);
|
std::map<uint256, CWalletTx>::const_iterator mit = mapWallet.find(wtxid);
|
||||||
if (mit != mapWallet.end() && mit->second.GetDepthInMainChain() >= 0)
|
if (mit != mapWallet.end()) {
|
||||||
return true; // Spent
|
int depth = mit->second.GetDepthInMainChain();
|
||||||
|
if (depth > 0 || (depth == 0 && !mit->second.isAbandoned()))
|
||||||
|
return true; // Spent
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
@ -610,7 +615,7 @@ bool CWallet::AddToWallet(const CWalletTx& wtxIn, bool fFromLoadWallet, CWalletD
|
||||||
BOOST_FOREACH(const CTxIn& txin, wtx.vin) {
|
BOOST_FOREACH(const CTxIn& txin, wtx.vin) {
|
||||||
if (mapWallet.count(txin.prevout.hash)) {
|
if (mapWallet.count(txin.prevout.hash)) {
|
||||||
CWalletTx& prevtx = mapWallet[txin.prevout.hash];
|
CWalletTx& prevtx = mapWallet[txin.prevout.hash];
|
||||||
if (prevtx.nIndex == -1 && !prevtx.hashBlock.IsNull()) {
|
if (prevtx.nIndex == -1 && !prevtx.hashUnset()) {
|
||||||
MarkConflicted(prevtx.hashBlock, wtx.GetHash());
|
MarkConflicted(prevtx.hashBlock, wtx.GetHash());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -631,7 +636,7 @@ bool CWallet::AddToWallet(const CWalletTx& wtxIn, bool fFromLoadWallet, CWalletD
|
||||||
wtxOrdered.insert(make_pair(wtx.nOrderPos, TxPair(&wtx, (CAccountingEntry*)0)));
|
wtxOrdered.insert(make_pair(wtx.nOrderPos, TxPair(&wtx, (CAccountingEntry*)0)));
|
||||||
|
|
||||||
wtx.nTimeSmart = wtx.nTimeReceived;
|
wtx.nTimeSmart = wtx.nTimeReceived;
|
||||||
if (!wtxIn.hashBlock.IsNull())
|
if (!wtxIn.hashUnset())
|
||||||
{
|
{
|
||||||
if (mapBlockIndex.count(wtxIn.hashBlock))
|
if (mapBlockIndex.count(wtxIn.hashBlock))
|
||||||
{
|
{
|
||||||
|
@ -681,7 +686,13 @@ bool CWallet::AddToWallet(const CWalletTx& wtxIn, bool fFromLoadWallet, CWalletD
|
||||||
if (!fInsertedNew)
|
if (!fInsertedNew)
|
||||||
{
|
{
|
||||||
// Merge
|
// Merge
|
||||||
if (!wtxIn.hashBlock.IsNull() && wtxIn.hashBlock != wtx.hashBlock)
|
if (!wtxIn.hashUnset() && wtxIn.hashBlock != wtx.hashBlock)
|
||||||
|
{
|
||||||
|
wtx.hashBlock = wtxIn.hashBlock;
|
||||||
|
fUpdated = true;
|
||||||
|
}
|
||||||
|
// If no longer abandoned, update
|
||||||
|
if (wtxIn.hashBlock.IsNull() && wtx.isAbandoned())
|
||||||
{
|
{
|
||||||
wtx.hashBlock = wtxIn.hashBlock;
|
wtx.hashBlock = wtxIn.hashBlock;
|
||||||
fUpdated = true;
|
fUpdated = true;
|
||||||
|
@ -768,6 +779,63 @@ bool CWallet::AddToWalletIfInvolvingMe(const CTransaction& tx, const CBlock* pbl
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool CWallet::AbandonTransaction(const uint256& hashTx)
|
||||||
|
{
|
||||||
|
LOCK2(cs_main, cs_wallet);
|
||||||
|
|
||||||
|
// Do not flush the wallet here for performance reasons
|
||||||
|
CWalletDB walletdb(strWalletFile, "r+", false);
|
||||||
|
|
||||||
|
std::set<uint256> todo;
|
||||||
|
std::set<uint256> done;
|
||||||
|
|
||||||
|
// Can't mark abandoned if confirmed or in mempool
|
||||||
|
assert(mapWallet.count(hashTx));
|
||||||
|
CWalletTx& origtx = mapWallet[hashTx];
|
||||||
|
if (origtx.GetDepthInMainChain() > 0 || origtx.InMempool()) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
todo.insert(hashTx);
|
||||||
|
|
||||||
|
while (!todo.empty()) {
|
||||||
|
uint256 now = *todo.begin();
|
||||||
|
todo.erase(now);
|
||||||
|
done.insert(now);
|
||||||
|
assert(mapWallet.count(now));
|
||||||
|
CWalletTx& wtx = mapWallet[now];
|
||||||
|
int currentconfirm = wtx.GetDepthInMainChain();
|
||||||
|
// If the orig tx was not in block, none of its spends can be
|
||||||
|
assert(currentconfirm <= 0);
|
||||||
|
// if (currentconfirm < 0) {Tx and spends are already conflicted, no need to abandon}
|
||||||
|
if (currentconfirm == 0 && !wtx.isAbandoned()) {
|
||||||
|
// If the orig tx was not in block/mempool, none of its spends can be in mempool
|
||||||
|
assert(!wtx.InMempool());
|
||||||
|
wtx.nIndex = -1;
|
||||||
|
wtx.setAbandoned();
|
||||||
|
wtx.MarkDirty();
|
||||||
|
wtx.WriteToDisk(&walletdb);
|
||||||
|
// Iterate over all its outputs, and mark transactions in the wallet that spend them abandoned too
|
||||||
|
TxSpends::const_iterator iter = mapTxSpends.lower_bound(COutPoint(hashTx, 0));
|
||||||
|
while (iter != mapTxSpends.end() && iter->first.hash == now) {
|
||||||
|
if (!done.count(iter->second)) {
|
||||||
|
todo.insert(iter->second);
|
||||||
|
}
|
||||||
|
iter++;
|
||||||
|
}
|
||||||
|
// If a transaction changes 'conflicted' state, that changes the balance
|
||||||
|
// available of the outputs it spends. So force those to be recomputed
|
||||||
|
BOOST_FOREACH(const CTxIn& txin, wtx.vin)
|
||||||
|
{
|
||||||
|
if (mapWallet.count(txin.prevout.hash))
|
||||||
|
mapWallet[txin.prevout.hash].MarkDirty();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
void CWallet::MarkConflicted(const uint256& hashBlock, const uint256& hashTx)
|
void CWallet::MarkConflicted(const uint256& hashBlock, const uint256& hashTx)
|
||||||
{
|
{
|
||||||
LOCK2(cs_main, cs_wallet);
|
LOCK2(cs_main, cs_wallet);
|
||||||
|
@ -976,7 +1044,7 @@ int CWalletTx::GetRequestCount() const
|
||||||
if (IsCoinBase())
|
if (IsCoinBase())
|
||||||
{
|
{
|
||||||
// Generated block
|
// Generated block
|
||||||
if (!hashBlock.IsNull())
|
if (!hashUnset())
|
||||||
{
|
{
|
||||||
map<uint256, int>::const_iterator mi = pwallet->mapRequestCount.find(hashBlock);
|
map<uint256, int>::const_iterator mi = pwallet->mapRequestCount.find(hashBlock);
|
||||||
if (mi != pwallet->mapRequestCount.end())
|
if (mi != pwallet->mapRequestCount.end())
|
||||||
|
@ -992,7 +1060,7 @@ int CWalletTx::GetRequestCount() const
|
||||||
nRequests = (*mi).second;
|
nRequests = (*mi).second;
|
||||||
|
|
||||||
// How about the block it's in?
|
// How about the block it's in?
|
||||||
if (nRequests == 0 && !hashBlock.IsNull())
|
if (nRequests == 0 && !hashUnset())
|
||||||
{
|
{
|
||||||
map<uint256, int>::const_iterator mi = pwallet->mapRequestCount.find(hashBlock);
|
map<uint256, int>::const_iterator mi = pwallet->mapRequestCount.find(hashBlock);
|
||||||
if (mi != pwallet->mapRequestCount.end())
|
if (mi != pwallet->mapRequestCount.end())
|
||||||
|
@ -1166,7 +1234,7 @@ void CWallet::ReacceptWalletTransactions()
|
||||||
|
|
||||||
int nDepth = wtx.GetDepthInMainChain();
|
int nDepth = wtx.GetDepthInMainChain();
|
||||||
|
|
||||||
if (!wtx.IsCoinBase() && nDepth == 0) {
|
if (!wtx.IsCoinBase() && (nDepth == 0 && !wtx.isAbandoned())) {
|
||||||
mapSorted.insert(std::make_pair(wtx.nOrderPos, &wtx));
|
mapSorted.insert(std::make_pair(wtx.nOrderPos, &wtx));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1186,7 +1254,7 @@ bool CWalletTx::RelayWalletTransaction()
|
||||||
assert(pwallet->GetBroadcastTransactions());
|
assert(pwallet->GetBroadcastTransactions());
|
||||||
if (!IsCoinBase())
|
if (!IsCoinBase())
|
||||||
{
|
{
|
||||||
if (GetDepthInMainChain() == 0) {
|
if (GetDepthInMainChain() == 0 && !isAbandoned()) {
|
||||||
LogPrintf("Relaying wtx %s\n", GetHash().ToString());
|
LogPrintf("Relaying wtx %s\n", GetHash().ToString());
|
||||||
RelayTransaction((CTransaction)*this);
|
RelayTransaction((CTransaction)*this);
|
||||||
return true;
|
return true;
|
||||||
|
@ -2927,8 +2995,9 @@ int CMerkleTx::SetMerkleBranch(const CBlock& block)
|
||||||
|
|
||||||
int CMerkleTx::GetDepthInMainChain(const CBlockIndex* &pindexRet) const
|
int CMerkleTx::GetDepthInMainChain(const CBlockIndex* &pindexRet) const
|
||||||
{
|
{
|
||||||
if (hashBlock.IsNull())
|
if (hashUnset())
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
AssertLockHeld(cs_main);
|
AssertLockHeld(cs_main);
|
||||||
|
|
||||||
// Find the block it claims to be in
|
// Find the block it claims to be in
|
||||||
|
@ -2956,4 +3025,3 @@ bool CMerkleTx::AcceptToMemoryPool(bool fLimitFree, bool fRejectAbsurdFee)
|
||||||
CValidationState state;
|
CValidationState state;
|
||||||
return ::AcceptToMemoryPool(mempool, state, *this, fLimitFree, NULL, false, fRejectAbsurdFee);
|
return ::AcceptToMemoryPool(mempool, state, *this, fLimitFree, NULL, false, fRejectAbsurdFee);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -155,6 +155,10 @@ struct COutputEntry
|
||||||
/** A transaction with a merkle branch linking it to the block chain. */
|
/** A transaction with a merkle branch linking it to the block chain. */
|
||||||
class CMerkleTx : public CTransaction
|
class CMerkleTx : public CTransaction
|
||||||
{
|
{
|
||||||
|
private:
|
||||||
|
/** Constant used in hashBlock to indicate tx has been abandoned */
|
||||||
|
static const uint256 ABANDON_HASH;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
uint256 hashBlock;
|
uint256 hashBlock;
|
||||||
|
|
||||||
|
@ -206,6 +210,9 @@ public:
|
||||||
bool IsInMainChain() const { const CBlockIndex *pindexRet; return GetDepthInMainChain(pindexRet) > 0; }
|
bool IsInMainChain() const { const CBlockIndex *pindexRet; return GetDepthInMainChain(pindexRet) > 0; }
|
||||||
int GetBlocksToMaturity() const;
|
int GetBlocksToMaturity() const;
|
||||||
bool AcceptToMemoryPool(bool fLimitFree=true, bool fRejectAbsurdFee=true);
|
bool AcceptToMemoryPool(bool fLimitFree=true, bool fRejectAbsurdFee=true);
|
||||||
|
bool hashUnset() const { return (hashBlock.IsNull() || hashBlock == ABANDON_HASH); }
|
||||||
|
bool isAbandoned() const { return (hashBlock == ABANDON_HASH); }
|
||||||
|
void setAbandoned() { hashBlock = ABANDON_HASH; }
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -486,7 +493,6 @@ private:
|
||||||
/* Mark a transaction (and its in-wallet descendants) as conflicting with a particular block. */
|
/* Mark a transaction (and its in-wallet descendants) as conflicting with a particular block. */
|
||||||
void MarkConflicted(const uint256& hashBlock, const uint256& hashTx);
|
void MarkConflicted(const uint256& hashBlock, const uint256& hashTx);
|
||||||
|
|
||||||
|
|
||||||
void SyncMetaData(std::pair<TxSpends::iterator, TxSpends::iterator>);
|
void SyncMetaData(std::pair<TxSpends::iterator, TxSpends::iterator>);
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
@ -783,6 +789,9 @@ public:
|
||||||
bool GetBroadcastTransactions() const { return fBroadcastTransactions; }
|
bool GetBroadcastTransactions() const { return fBroadcastTransactions; }
|
||||||
/** Set whether this wallet broadcasts transactions. */
|
/** Set whether this wallet broadcasts transactions. */
|
||||||
void SetBroadcastTransactions(bool broadcast) { fBroadcastTransactions = broadcast; }
|
void SetBroadcastTransactions(bool broadcast) { fBroadcastTransactions = broadcast; }
|
||||||
|
|
||||||
|
/* Mark a transaction (and it in-wallet descendants) as abandoned so its inputs may be respent. */
|
||||||
|
bool AbandonTransaction(const uint256& hashTx);
|
||||||
};
|
};
|
||||||
|
|
||||||
/** A key allocated from the key pool. */
|
/** A key allocated from the key pool. */
|
||||||
|
|
Loading…
Reference in a new issue