From 2bead5c15f43867ac3b29b5e43bf3ddae6fb94ee Mon Sep 17 00:00:00 2001 From: jl777 Date: Mon, 23 Jul 2018 00:27:33 -1100 Subject: [PATCH] Test --- src/cc/CCassetsCore.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cc/CCassetsCore.cpp b/src/cc/CCassetsCore.cpp index d19fa6aad..68493d33e 100644 --- a/src/cc/CCassetsCore.cpp +++ b/src/cc/CCassetsCore.cpp @@ -327,7 +327,7 @@ bool AssetExactAmounts(uint64_t &inputs,uint64_t &outputs,Eval* eval,const CTran return eval->Invalid("always should find vin, but didnt"); else if ( (assetoshis= IsAssetvout(tmpprice,tmporigpubkey,vinTx,tx.vin[i].prevout.n,assetid)) != 0 ) { - fprintf(stderr,"vin%d %llu, ",i,(long long)assetoshis) + fprintf(stderr,"vin%d %llu, ",i,(long long)assetoshis); inputs += assetoshis; } } @@ -336,7 +336,7 @@ bool AssetExactAmounts(uint64_t &inputs,uint64_t &outputs,Eval* eval,const CTran { if ( (assetoshis= IsAssetvout(tmpprice,tmporigpubkey,tx,i,assetid)) != 0 ) { - fprintf(stderr,"vout%d %llu, ",i,(long long)assetoshis) + fprintf(stderr,"vout%d %llu, ",i,(long long)assetoshis); outputs += assetoshis; } }