From 85dd6ce61cc019bd939f579c95bc8f2701620986 Mon Sep 17 00:00:00 2001 From: "Jonathan \"Duke\" Leto" Date: Fri, 12 Apr 2019 14:32:09 +0200 Subject: [PATCH 1/2] T3 --- src/hush-cli | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hush-cli b/src/hush-cli index 57b879bcb..4ca911e7c 100755 --- a/src/hush-cli +++ b/src/hush-cli @@ -5,6 +5,6 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" cd $DIR -NAME=HUSHT +NAME=HUSHT3 ./komodo-cli -ac_name=$NAME "$@" From 18e93c1c9bfaab7db16566c8235ed0327e757d4b Mon Sep 17 00:00:00 2001 From: Duke Leto Date: Fri, 12 Apr 2019 05:55:12 -0700 Subject: [PATCH 2/2] fix compile error --- src/komodo_bitcoind.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/komodo_bitcoind.h b/src/komodo_bitcoind.h index 1dc5b187e..117458813 100644 --- a/src/komodo_bitcoind.h +++ b/src/komodo_bitcoind.h @@ -1227,7 +1227,7 @@ uint64_t komodo_commission(const CBlock *pblock,int32_t height) // Transition period of 128 blocks has no FR if (height < 129) { commission = 0; - else if (height < HALVING1) { + } else if (height < HALVING1) { commission = starting_commission; } else if (height < HALVING1+1*INTERVAL) { commission = starting_commission / 2;