From aa5ca00101a3967a7b3508ada802bbba279e89e9 Mon Sep 17 00:00:00 2001 From: jl777 Date: Sat, 24 Mar 2018 14:10:59 +0200 Subject: [PATCH] Test --- src/komodo_bitcoind.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/komodo_bitcoind.h b/src/komodo_bitcoind.h index 0306b434e..535e1ad81 100644 --- a/src/komodo_bitcoind.h +++ b/src/komodo_bitcoind.h @@ -811,16 +811,18 @@ int32_t komodo_is_special(int32_t height,uint8_t pubkey33[33],uint32_t timestamp return(0); } -int32_t komodo_MoM(int32_t *notarized_heightp,uint256 *MoMp,int32_t nHeight) +int32_t komodo_MoM(int32_t *notarized_heightp,uint256 *MoMp,uint256 *kmdtxidp,int32_t nHeight) { - int32_t depth,notarized_ht; uint256 MoM; - depth = komodo_MoMdata(¬arized_ht,&MoM,nHeight); + int32_t depth,notarized_ht; uint256 MoM,kmdtxid; + depth = komodo_MoMdata(¬arized_ht,&MoM,&kmdtxid,nHeight); memset(MoMp,0,sizeof(*MoMp)); + memset(*kmdtxidp,0,sizeof(*kmdtxidp)); *notarized_heightp = 0; if ( depth > 0 && notarized_ht > 0 && nHeight > notarized_ht-depth && nHeight < notarized_ht ) { *MoMp = MoM; *notarized_heightp = notarized_ht; + *kmdtxidp = kmdtxid; } return(depth); }