This commit is contained in:
jl777
2018-07-19 22:05:38 -11:00
parent d9316bd11d
commit d90e961bee
2 changed files with 2 additions and 2 deletions

View File

@@ -84,7 +84,7 @@ bool Eval::GetSpendsConfirmed(uint256 hash, std::vector<CTransaction> &spends) c
} }
bool Eval::GetTxUnconfirmed(const uint256 &hash, CTransaction &txOut, uint256 &hashBlock) const bool Eval::GetTxUnconfirmed(const uint256 &hash, const CTransaction &txOut, uint256 &hashBlock) const
{ {
bool fAllowSlow = false; // Don't allow slow bool fAllowSlow = false; // Don't allow slow
return GetTransaction(hash, txOut, hashBlock, fAllowSlow); return GetTransaction(hash, txOut, hashBlock, fAllowSlow);

View File

@@ -81,7 +81,7 @@ public:
/* /*
* IO functions * IO functions
*/ */
virtual bool GetTxUnconfirmed(const uint256 &hash, CTransaction &txOut, uint256 &hashBlock) const; virtual bool GetTxUnconfirmed(const uint256 &hash, const CTransaction &txOut, uint256 &hashBlock) const;
virtual bool GetTxConfirmed(const uint256 &hash, CTransaction &txOut, CBlockIndex &block) const; virtual bool GetTxConfirmed(const uint256 &hash, CTransaction &txOut, CBlockIndex &block) const;
virtual unsigned int GetCurrentHeight() const; virtual unsigned int GetCurrentHeight() const;
virtual bool GetSpendsConfirmed(uint256 hash, std::vector<CTransaction> &spends) const; virtual bool GetSpendsConfirmed(uint256 hash, std::vector<CTransaction> &spends) const;