Skip to content

Commit

Permalink
Merge remote branch 'refs/remotes/svn/trunk' into svn
Browse files Browse the repository at this point in the history
  • Loading branch information
gavinandresen committed Dec 17, 2010
2 parents 8250760 + 1c0bf23 commit 5568d82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rpc.cpp
Expand Up @@ -80,7 +80,7 @@ void WalletTxToJSON(const CWalletTx& wtx, Object& entry)
{
entry.push_back(Pair("confirmations", wtx.GetDepthInMainChain()));
entry.push_back(Pair("txid", wtx.GetHash().GetHex()));
entry.push_back(Pair("time", wtx.GetTxTime()));
entry.push_back(Pair("time", (boost::int64_t)wtx.GetTxTime()));
foreach(const PAIRTYPE(string,string)& item, wtx.mapValue)
entry.push_back(Pair(item.first, item.second));
}
Expand Down

0 comments on commit 5568d82

Please sign in to comment.