mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 20:12:57 +01:00
fix display of new generated coins, fix assertion in bitcoinminer
This commit is contained in:
parent
44e1254d1c
commit
6ccefea62a
31
main.cpp
31
main.cpp
@ -1129,9 +1129,6 @@ bool CBlock::AddToBlockIndex(unsigned int nFile, unsigned int nBlockPos)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Notify UI to update prev block coinbase if it was ours
|
|
||||||
vWalletUpdated.push_back(hashBestChain);
|
|
||||||
|
|
||||||
// New best link
|
// New best link
|
||||||
hashBestChain = hash;
|
hashBestChain = hash;
|
||||||
pindexBest = pindexNew;
|
pindexBest = pindexNew;
|
||||||
@ -1143,10 +1140,18 @@ bool CBlock::AddToBlockIndex(unsigned int nFile, unsigned int nBlockPos)
|
|||||||
txdb.TxnCommit();
|
txdb.TxnCommit();
|
||||||
txdb.Close();
|
txdb.Close();
|
||||||
|
|
||||||
// Relay wallet transactions that haven't gotten in yet
|
|
||||||
if (pindexNew == pindexBest)
|
if (pindexNew == pindexBest)
|
||||||
|
{
|
||||||
|
// Relay wallet transactions that haven't gotten in yet
|
||||||
RelayWalletTransactions();
|
RelayWalletTransactions();
|
||||||
|
|
||||||
|
// Notify UI to display prev block's coinbase if it was ours
|
||||||
|
static uint256 hashPrevBestCoinBase;
|
||||||
|
CRITICAL_BLOCK(cs_mapWallet)
|
||||||
|
vWalletUpdated.push_back(hashPrevBestCoinBase);
|
||||||
|
hashPrevBestCoinBase = vtx[0].GetHash();
|
||||||
|
}
|
||||||
|
|
||||||
MainFrameRepaint();
|
MainFrameRepaint();
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@ -2074,13 +2079,8 @@ bool ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv)
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
// Ignore unknown commands for extensibility
|
// Ignore unknown commands for extensibility
|
||||||
printf("ProcessMessage(%s) : Ignored unknown message\n", strCommand.c_str());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if (!vRecv.empty())
|
|
||||||
printf("ProcessMessage(%s) : %d extra bytes\n", strCommand.c_str(), vRecv.size());
|
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2349,7 +2349,7 @@ bool BitcoinMiner()
|
|||||||
}
|
}
|
||||||
pblock->nBits = nBits;
|
pblock->nBits = nBits;
|
||||||
pblock->vtx[0].vout[0].nValue = pblock->GetBlockValue(nFees);
|
pblock->vtx[0].vout[0].nValue = pblock->GetBlockValue(nFees);
|
||||||
printf("\n\nRunning BitcoinMiner with %d transactions in block\n", pblock->vtx.size());
|
printf("Running BitcoinMiner with %d transactions in block\n", pblock->vtx.size());
|
||||||
|
|
||||||
|
|
||||||
//
|
//
|
||||||
@ -2408,12 +2408,8 @@ bool BitcoinMiner()
|
|||||||
SetThreadPriority(GetCurrentThread(), THREAD_PRIORITY_NORMAL);
|
SetThreadPriority(GetCurrentThread(), THREAD_PRIORITY_NORMAL);
|
||||||
CRITICAL_BLOCK(cs_main)
|
CRITICAL_BLOCK(cs_main)
|
||||||
{
|
{
|
||||||
if (pindexPrev != pindexBest)
|
if (pindexPrev == pindexBest)
|
||||||
{
|
{
|
||||||
SetThreadPriority(GetCurrentThread(), THREAD_PRIORITY_LOWEST);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Save key
|
// Save key
|
||||||
if (!AddKey(key))
|
if (!AddKey(key))
|
||||||
return false;
|
return false;
|
||||||
@ -2423,6 +2419,7 @@ bool BitcoinMiner()
|
|||||||
if (!ProcessBlock(NULL, pblock.release()))
|
if (!ProcessBlock(NULL, pblock.release()))
|
||||||
printf("ERROR in BitcoinMiner, ProcessBlock, block not accepted\n");
|
printf("ERROR in BitcoinMiner, ProcessBlock, block not accepted\n");
|
||||||
}
|
}
|
||||||
|
}
|
||||||
SetThreadPriority(GetCurrentThread(), THREAD_PRIORITY_LOWEST);
|
SetThreadPriority(GetCurrentThread(), THREAD_PRIORITY_LOWEST);
|
||||||
|
|
||||||
Sleep(500);
|
Sleep(500);
|
||||||
@ -2439,8 +2436,10 @@ bool BitcoinMiner()
|
|||||||
break;
|
break;
|
||||||
if (nTransactionsUpdated != nTransactionsUpdatedLast && GetTime() - nStart > 60)
|
if (nTransactionsUpdated != nTransactionsUpdatedLast && GetTime() - nStart > 60)
|
||||||
break;
|
break;
|
||||||
if (!fGenerateBitcoins)
|
if (vNodes.empty())
|
||||||
break;
|
break;
|
||||||
|
if (!fGenerateBitcoins)
|
||||||
|
return true;
|
||||||
if (fLimitProcessors && vnThreadsRunning[3] > nLimitProcessors)
|
if (fLimitProcessors && vnThreadsRunning[3] > nLimitProcessors)
|
||||||
return true;
|
return true;
|
||||||
tmp.block.nTime = pblock->nTime = max(pindexPrev->GetMedianTimePast()+1, GetAdjustedTime());
|
tmp.block.nTime = pblock->nTime = max(pindexPrev->GetMedianTimePast()+1, GetAdjustedTime());
|
||||||
|
@ -19,7 +19,7 @@ class CScript;
|
|||||||
class CDataStream;
|
class CDataStream;
|
||||||
class CAutoFile;
|
class CAutoFile;
|
||||||
|
|
||||||
static const int VERSION = 106;
|
static const int VERSION = 105;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
51
ui.cpp
51
ui.cpp
@ -306,6 +306,8 @@ CMainFrame::CMainFrame(wxWindow* parent) : CMainFrameBase(parent)
|
|||||||
|
|
||||||
// Init column headers
|
// Init column headers
|
||||||
int nDateWidth = DateTimeStr(1229413914).size() * 6 + 8;
|
int nDateWidth = DateTimeStr(1229413914).size() * 6 + 8;
|
||||||
|
if (!strstr(DateTimeStr(1229413914).c_str(), "2008"))
|
||||||
|
nDateWidth += 12;
|
||||||
m_listCtrl->InsertColumn(0, "", wxLIST_FORMAT_LEFT, 0);
|
m_listCtrl->InsertColumn(0, "", wxLIST_FORMAT_LEFT, 0);
|
||||||
m_listCtrl->InsertColumn(1, "", wxLIST_FORMAT_LEFT, 0);
|
m_listCtrl->InsertColumn(1, "", wxLIST_FORMAT_LEFT, 0);
|
||||||
m_listCtrl->InsertColumn(2, "Status", wxLIST_FORMAT_LEFT, 90);
|
m_listCtrl->InsertColumn(2, "Status", wxLIST_FORMAT_LEFT, 90);
|
||||||
@ -441,12 +443,33 @@ void CMainFrame::InsertLine(bool fNew, int nIndex, uint256 hashKey, string strSo
|
|||||||
m_listCtrl->SetItemData(nIndex, nData);
|
m_listCtrl->SetItemData(nIndex, nData);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool CMainFrame::DeleteLine(uint256 hashKey)
|
||||||
|
{
|
||||||
|
long nData = *(long*)&hashKey;
|
||||||
|
|
||||||
|
// Find item
|
||||||
|
int nIndex = -1;
|
||||||
|
while ((nIndex = m_listCtrl->FindItem(nIndex, nData)) != -1)
|
||||||
|
if (GetItemText(m_listCtrl, nIndex, 1) == hashKey.ToString())
|
||||||
|
break;
|
||||||
|
|
||||||
|
if (nIndex != -1)
|
||||||
|
m_listCtrl->DeleteItem(nIndex);
|
||||||
|
|
||||||
|
return nIndex != -1;
|
||||||
|
}
|
||||||
|
|
||||||
string FormatTxStatus(const CWalletTx& wtx)
|
string FormatTxStatus(const CWalletTx& wtx)
|
||||||
{
|
{
|
||||||
// Status
|
// Status
|
||||||
int nDepth = wtx.GetDepthInMainChain();
|
int nDepth = wtx.GetDepthInMainChain();
|
||||||
if (!wtx.IsFinal())
|
if (!wtx.IsFinal())
|
||||||
|
{
|
||||||
|
if (wtx.nLockTime < 500000000)
|
||||||
return strprintf("Open for %d blocks", nBestHeight - wtx.nLockTime);
|
return strprintf("Open for %d blocks", nBestHeight - wtx.nLockTime);
|
||||||
|
else
|
||||||
|
return strprintf("Open until %s", DateTimeStr(wtx.nLockTime).c_str());
|
||||||
|
}
|
||||||
else if (nDepth < 6)
|
else if (nDepth < 6)
|
||||||
return strprintf("%d/unconfirmed", nDepth);
|
return strprintf("%d/unconfirmed", nDepth);
|
||||||
else
|
else
|
||||||
@ -503,8 +526,12 @@ void CMainFrame::InsertTransaction(const CWalletTx& wtx, bool fNew, int nIndex)
|
|||||||
// are special because if their block is not accepted, they are not valid.
|
// are special because if their block is not accepted, they are not valid.
|
||||||
//
|
//
|
||||||
if (wtx.GetDepthInMainChain() < 2)
|
if (wtx.GetDepthInMainChain() < 2)
|
||||||
|
{
|
||||||
|
// In case it was previously displayed
|
||||||
|
DeleteLine(hash);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Find the block the tx is in
|
// Find the block the tx is in
|
||||||
CBlockIndex* pindex = NULL;
|
CBlockIndex* pindex = NULL;
|
||||||
@ -800,6 +827,17 @@ void CMainFrame::OnPaint(wxPaintEvent& event)
|
|||||||
event.Skip();
|
event.Skip();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void DelayedRepaint(void* parg)
|
||||||
|
{
|
||||||
|
static bool fOneThread;
|
||||||
|
if (fOneThread)
|
||||||
|
return;
|
||||||
|
fOneThread = true;
|
||||||
|
Sleep(1000);
|
||||||
|
MainFrameRepaint();
|
||||||
|
fOneThread = false;
|
||||||
|
}
|
||||||
|
|
||||||
void CMainFrame::OnPaintListCtrl(wxPaintEvent& event)
|
void CMainFrame::OnPaintListCtrl(wxPaintEvent& event)
|
||||||
{
|
{
|
||||||
// Update listctrl contents
|
// Update listctrl contents
|
||||||
@ -833,8 +871,16 @@ void CMainFrame::OnPaintListCtrl(wxPaintEvent& event)
|
|||||||
m_statusBar->SetStatusText(strStatus, 2);
|
m_statusBar->SetStatusText(strStatus, 2);
|
||||||
|
|
||||||
// Balance total
|
// Balance total
|
||||||
|
bool fRefreshed = false;
|
||||||
TRY_CRITICAL_BLOCK(cs_mapWallet)
|
TRY_CRITICAL_BLOCK(cs_mapWallet)
|
||||||
|
{
|
||||||
m_staticTextBalance->SetLabel(FormatMoney(GetBalance()) + " ");
|
m_staticTextBalance->SetLabel(FormatMoney(GetBalance()) + " ");
|
||||||
|
fRefreshed = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
// mapWallet was locked, try again later
|
||||||
|
if (!vWalletUpdated.empty() || !fRefreshed)
|
||||||
|
_beginthread(DelayedRepaint, 0, NULL);
|
||||||
|
|
||||||
m_listCtrl->OnPaint(event);
|
m_listCtrl->OnPaint(event);
|
||||||
}
|
}
|
||||||
@ -1414,7 +1460,7 @@ void COptionsDialog::OnButtonApply(wxCommandEvent& event)
|
|||||||
|
|
||||||
CAboutDialog::CAboutDialog(wxWindow* parent) : CAboutDialogBase(parent)
|
CAboutDialog::CAboutDialog(wxWindow* parent) : CAboutDialogBase(parent)
|
||||||
{
|
{
|
||||||
m_staticTextVersion->SetLabel(strprintf("version 0.%d.%d Alpha", VERSION/100, VERSION%100));
|
m_staticTextVersion->SetLabel(strprintf("version 0.%d.%d Beta", VERSION/100, VERSION%100));
|
||||||
|
|
||||||
// Workaround until upgrade to wxWidgets supporting UTF-8
|
// Workaround until upgrade to wxWidgets supporting UTF-8
|
||||||
wxString str = m_staticTextMain->GetLabel();
|
wxString str = m_staticTextMain->GetLabel();
|
||||||
@ -3358,6 +3404,8 @@ bool CMyApp::OnInit2()
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//RandAddSeedPerfmon();
|
||||||
|
|
||||||
if (!StartNode(strErrors))
|
if (!StartNode(strErrors))
|
||||||
wxMessageBox(strErrors, "Bitcoin");
|
wxMessageBox(strErrors, "Bitcoin");
|
||||||
|
|
||||||
@ -3517,7 +3565,6 @@ void SetStartOnSystemStartup(bool fAutoStart)
|
|||||||
// Get the current executable path
|
// Get the current executable path
|
||||||
char pszExePath[MAX_PATH];
|
char pszExePath[MAX_PATH];
|
||||||
GetModuleFileName(NULL, pszExePath, sizeof(pszExePath));
|
GetModuleFileName(NULL, pszExePath, sizeof(pszExePath));
|
||||||
_strlwr(pszExePath);
|
|
||||||
|
|
||||||
// Set the path to the shortcut target
|
// Set the path to the shortcut target
|
||||||
psl->SetPath(pszExePath);
|
psl->SetPath(pszExePath);
|
||||||
|
1
ui.h
1
ui.h
@ -88,6 +88,7 @@ public:
|
|||||||
|
|
||||||
void OnCrossThreadCall(wxCommandEvent& event);
|
void OnCrossThreadCall(wxCommandEvent& event);
|
||||||
void InsertLine(bool fNew, int nIndex, uint256 hashKey, string strSort, const wxString& str1, const wxString& str2, const wxString& str3, const wxString& str4, const wxString& str5);
|
void InsertLine(bool fNew, int nIndex, uint256 hashKey, string strSort, const wxString& str1, const wxString& str2, const wxString& str3, const wxString& str4, const wxString& str5);
|
||||||
|
bool DeleteLine(uint256 hashKey);
|
||||||
void InsertTransaction(const CWalletTx& wtx, bool fNew, int nIndex=-1);
|
void InsertTransaction(const CWalletTx& wtx, bool fNew, int nIndex=-1);
|
||||||
void RefreshListCtrl();
|
void RefreshListCtrl();
|
||||||
void RefreshStatus();
|
void RefreshStatus();
|
||||||
|
Loading…
Reference in New Issue
Block a user