From 3fd99ea6b3326216ac61ac1ad5285dbd54722785 Mon Sep 17 00:00:00 2001 From: jl777 Date: Tue, 4 Sep 2018 03:04:15 -1100 Subject: [PATCH] ! --- src/cc/oracles.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cc/oracles.cpp b/src/cc/oracles.cpp index 679cef14b..89579f7af 100644 --- a/src/cc/oracles.cpp +++ b/src/cc/oracles.cpp @@ -169,7 +169,7 @@ CPubKey OracleBatonPk(char *batonaddr,struct CCcontract_info *cp,CPubKey mypk) Myprivkey(priv); for (i=0; i<32; i++) cp->unspendablepriv2[i] = (priv[i] ^ cp->CCpriv[i]); - if ( secp256k1_ec_pubkey_create(ctx,&pubkey,cp->unspendablepriv2) != 0 ) + if ( secp256k1_ec_pubkey_create(ctx,&pubkey,cp->unspendablepriv2) == 0 ) { secp256k1_ec_pubkey_serialize(ctx,(unsigned char*)batonpk.begin(),&clen,&pubkey,SECP256K1_EC_COMPRESSED); cp->unspendablepk2 = batonpk;