From 05cbbacfc7878edcc9653c631ca8d8e9ddb7c1f3 Mon Sep 17 00:00:00 2001 From: jl777 Date: Fri, 20 Jan 2017 22:19:15 +0200 Subject: [PATCH] test --- src/wallet/rpcwallet.cpp | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/wallet/rpcwallet.cpp b/src/wallet/rpcwallet.cpp index 29ee929bc..597ddf1d0 100644 --- a/src/wallet/rpcwallet.cpp +++ b/src/wallet/rpcwallet.cpp @@ -573,12 +573,17 @@ Value kvupdate(const Array& params, bool fHelp) if ( (keylen= (int32_t)strlen(params[0].get_str().c_str())) > 0 ) { key = (uint8_t *)params[0].get_str().c_str(); + if ( (valuesize= komodo_kvsearch(&flags,&height,&keyvalue[keylen],key,keylen)) >= 0 && (flags & 1) != 0 ) + { + ret.push_back(Pair("error",(char *)"cant modify write once key")); + return ret; + } ret.push_back(Pair("coin",(char *)(ASSETCHAINS_SYMBOL[0] == 0 ? "KMD" : ASSETCHAINS_SYMBOL))); height = chainActive.Tip()->nHeight; ret.push_back(Pair("height", (int64_t)height)); - ret.push_back(Pair("flags",flags)); + ret.push_back(Pair("flags",(int64_t)flags)); ret.push_back(Pair("key",params[0].get_str())); - ret.push_back(Pair("keylen",keylen)); + ret.push_back(Pair("keylen",(int64_t)keylen)); if ( params.size() == 2 && params[1].get_str().c_str() != 0 ) { value = (uint8_t *)params[1].get_str().c_str();