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; }
bool GetNotarisationData(int notarisationHeight, NotarisationData &data, bool verifyCanonical) const
bool GetProofRoot(uint256 hash, uint256 &momom) const
{
if (MoMoM.IsNull()) return false;
data.MoMoM = MoMoM;
momom = MoMoM;
return true;
}
protected:
static void SetUpTestCase() { setupChain(); }
virtual void SetUp() {