fix broken test case

This commit is contained in:
Scott Sadler
2018-05-19 12:56:48 -03:00
parent e4f943d86d
commit b6ef9c089a

View File

@@ -43,13 +43,14 @@ public:
uint32_t GetCurrentLedgerID() const { return chainId; } uint32_t GetCurrentLedgerID() const { return chainId; }
bool GetNotarisationData(int notarisationHeight, NotarisationData &data, bool verifyCanonical) const bool GetProofRoot(uint256 hash, uint256 &momom) const
{ {
if (MoMoM.IsNull()) return false; if (MoMoM.IsNull()) return false;
data.MoMoM = MoMoM; momom = MoMoM;
return true; return true;
} }
protected: protected:
static void SetUpTestCase() { setupChain(); } static void SetUpTestCase() { setupChain(); }
virtual void SetUp() { virtual void SetUp() {