Add blockhash and blockindex to transaction info
This commit is contained in:
parent
c7eb151ad0
commit
cce16fdc68
1 changed files with 7 additions and 1 deletions
|
@ -90,7 +90,13 @@ Value ValueFromAmount(int64 amount)
|
||||||
|
|
||||||
void WalletTxToJSON(const CWalletTx& wtx, Object& entry)
|
void WalletTxToJSON(const CWalletTx& wtx, Object& entry)
|
||||||
{
|
{
|
||||||
entry.push_back(Pair("confirmations", wtx.GetDepthInMainChain()));
|
int confirms = wtx.GetDepthInMainChain();
|
||||||
|
entry.push_back(Pair("confirmations", confirms));
|
||||||
|
if (confirms)
|
||||||
|
{
|
||||||
|
entry.push_back(Pair("blockhash", wtx.hashBlock.GetHex()));
|
||||||
|
entry.push_back(Pair("blockindex", wtx.nIndex));
|
||||||
|
}
|
||||||
entry.push_back(Pair("txid", wtx.GetHash().GetHex()));
|
entry.push_back(Pair("txid", wtx.GetHash().GetHex()));
|
||||||
entry.push_back(Pair("time", (boost::int64_t)wtx.GetTxTime()));
|
entry.push_back(Pair("time", (boost::int64_t)wtx.GetTxTime()));
|
||||||
BOOST_FOREACH(const PAIRTYPE(string,string)& item, wtx.mapValue)
|
BOOST_FOREACH(const PAIRTYPE(string,string)& item, wtx.mapValue)
|
||||||
|
|
Loading…
Reference in a new issue