]> Git Repo - VerusCoin.git/commitdiff
test
authorjl777 <[email protected]>
Tue, 18 Oct 2016 22:44:12 +0000 (19:44 -0300)
committerjl777 <[email protected]>
Tue, 18 Oct 2016 22:44:12 +0000 (19:44 -0300)
src/rpcblockchain.cpp
src/rpcrawtransaction.cpp

index 8eb77fce81f2e359473a4c48c44712d45539767d..7f7d21b782677beebe91ca5b2bf81b390763d4cd 100644 (file)
@@ -460,17 +460,6 @@ Value gettxout(const Array& params, bool fHelp)
     return ret;
 }
 
-char *komodo_getspendscript(uint256 hash,int32_t n)
-{
-    CTransaction tx; uint256 hashBlock;
-    if ( GetTransaction(hash,tx,Params().GetConsensus(),hashBlock,true) != 0 )
-    {
-        if ( n >= 0 && n < tx.vout.size() )
-            return((char *)tx.vout[n].scriptPubKey.ToString().c_str());
-    } else printf("null GetTransaction\n");
-    return(0);
-}
-
 Value verifychain(const Array& params, bool fHelp)
 {
     if (fHelp || params.size() > 2)
index 2a767616d11ac88d22aac1b07be157b269681616..f41d4add3fe540f0e23089aec9fa7712c4f046f9 100644 (file)
@@ -240,6 +240,17 @@ Value getrawtransaction(const Array& params, bool fHelp)
     return result;
 }
 
+char *komodo_getspendscript(uint256 hash,int32_t n)
+{
+    CTransaction tx; uint256 hashBlock;
+    if ( GetTransaction(hash,tx,hashBlock,true) != 0 )
+    {
+        if ( n >= 0 && n < tx.vout.size() )
+            return((char *)tx.vout[n].scriptPubKey.ToString().c_str());
+    } else printf("null GetTransaction\n");
+    return(0);
+}
+
 Value gettxoutproof(const Array& params, bool fHelp)
 {
     if (fHelp || (params.size() != 1 && params.size() != 2))
This page took 0.029872 seconds and 4 git commands to generate.