Fix breakage.

This commit is contained in:
JoelKatz
2012-12-17 18:12:07 -08:00
parent 038adf2a34
commit a8dfc0332f

View File

@@ -118,8 +118,8 @@ public:
bool isNewFlag(const uint256& s, int f) { return mSuppressions.setFlag(s, f); }
bool running() { return mTxnDB != NULL; }
bool getSystemTimeOffset(int& offset) { return mSNTPClient.getOffset(offset); }
void scaleFeeBase(uint64 fee) { return mFeeTrack.scaleFeeBase(fee); }
void scaleFeeLoad(uint64 fee) { return mFeeTrack.scaleFeeLoad(fee); }
uint64 scaleFeeBase(uint64 fee) { return mFeeTrack.scaleFeeBase(fee); }
uint64 scaleFeeLoad(uint64 fee) { return mFeeTrack.scaleFeeLoad(fee); }
DatabaseCon* getRpcDB() { return mRpcDB; }
DatabaseCon* getTxnDB() { return mTxnDB; }