Merge pull request #33 from braydonf/getmempooloutputs

Added getMempoolOutputs method
This commit is contained in:
Patrick Nagurny 2015-07-20 10:25:54 -06:00
commit d0327b2f85
4 changed files with 161 additions and 9 deletions

View File

@ -133,7 +133,57 @@ describe('Basic Functionality', function() {
var work = bitcoind.getChainWork(hash);
should.equal(work, undefined);
});
});
describe('mempool functionality', function() {
var fromAddress = 'mszYqVnqKoQx4jcTdJXxwKAissE3Jbrrc1';
var utxo = {
address: fromAddress,
txId: 'a477af6b2667c29670467e4e0728b685ee07b240235771862318e29ddbe58458',
outputIndex: 0,
script: bitcore.Script.buildPublicKeyHashOut(fromAddress).toString(),
satoshis: 100000
};
var toAddress = 'mrU9pEmAx26HcbKVrABvgL7AwA5fjNFoDc';
var changeAddress = 'mgBCJAsvzgT2qNNeXsoECg2uPKrUsZ76up';
var changeAddressP2SH = '2N7T3TAetJrSCruQ39aNrJvYLhG1LJosujf';
var privateKey = 'cSBnVM4xvxarwGQuAfQFwqDg9k5tErHUHzgWsEfD4zdwUasvqRVY';
var private1 = '6ce7e97e317d2af16c33db0b9270ec047a91bff3eff8558afb5014afb2bb5976';
var private2 = 'c9b26b0f771a0d2dad88a44de90f05f416b3b385ff1d989343005546a0032890';
var tx = new bitcore.Transaction();
tx.from(utxo);
tx.to(toAddress, 50000);
tx.change(changeAddress);
tx.sign(privateKey);
it('will add an unchecked transaction', function() {
var added = bitcoind.addMempoolUncheckedTransaction(tx.serialize());
added.should.equal(true);
bitcoind.getTransaction(tx.hash, true, function(err, txBuffer) {
if(err) {
throw err;
}
var expected = tx.toBuffer().toString('hex');
txBuffer.toString('hex').should.equal(expected);
});
});
it('get outputs by address', function() {
var outputs = bitcoind.getMempoolOutputs(changeAddress);
var expected = [
{
script: 'OP_DUP OP_HASH160 073b7eae2823efa349e3b9155b8a735526463a0f OP_EQUALVERIFY OP_CHECKSIG',
satoshis: 40000,
txid: tx.hash,
outputIndex: 1
}
];
outputs.should.deep.equal(expected);
});
});
});

View File

@ -382,6 +382,14 @@ Bitcoin.prototype.getTransactionWithBlock = function(txid, blockhash, callback)
});
};
Bitcoin.prototype.getMempoolOutputs = function(address) {
return bitcoindjs.getMempoolOutputs(address);
};
Bitcoin.prototype.addMempoolUncheckedTransaction = function(txBuffer) {
return bitcoindjs.addMempoolUncheckedTransaction(txBuffer);
};
Bitcoin.prototype.getInfo = function() {
if (bitcoin.stopping) return [];
return bitcoindjs.getInfo();

View File

@ -821,6 +821,7 @@ async_get_tx(uv_work_t *req) {
{
if (mempool.lookup(hash, ctx))
{
data->ctx = ctx;
return;
}
}
@ -983,6 +984,103 @@ NAN_METHOD(GetInfo) {
NanReturnValue(obj);
}
/**
* GetMempoolOutputs
* bitcoindjs.getMempoolOutputs()
* Will return outputs by address from the mempool.
*/
NAN_METHOD(GetMempoolOutputs) {
Isolate* isolate = Isolate::GetCurrent();
HandleScope scope(isolate);
// Instatiate an empty array that we will fill later
// with matching outputs.
Local<Array> outputs = Array::New(isolate);
int arrayIndex = 0;
// Decode the input address into the hash bytes
// that we can then match to the scriptPubKeys data
v8::String::Utf8Value param1(args[0]->ToString());
std::string *input = new std::string(*param1);
const char* psz = input->c_str();
std::vector<unsigned char> vAddress;
DecodeBase58(psz, vAddress);
vector<unsigned char> hashBytes(vAddress.begin()+1, vAddress.begin()+21);
// Iterate through the entire mempool
std::map<uint256, CTxMemPoolEntry> mapTx = mempool.mapTx;
for(std::map<uint256, CTxMemPoolEntry>::iterator it = mapTx.begin(); it != mapTx.end(); it++) {
uint256 txid = it->first;
CTxMemPoolEntry entry = it->second;
const CTransaction tx = entry.GetTx();
int outputIndex = 0;
// Iterate through each output
BOOST_FOREACH(const CTxOut& txout, tx.vout) {
CScript script = txout.scriptPubKey;
txnouttype type;
std::vector<std::vector<unsigned char> > hashResults;
if (Solver(script, type, hashResults)) {
// See if the script is any of the standard address types
if (type == TX_PUBKEYHASH || type == TX_SCRIPTHASH) {
vector<unsigned char> scripthashBytes = hashResults.front();
// Compare the hash bytes with the input hash bytes
if(equal(hashBytes.begin(), hashBytes.end(), scripthashBytes.begin())) {
Local<Object> output = NanNew<Object>();
output->Set(NanNew<String>("script"), NanNew<String>(script.ToString()));
uint64_t satoshis = txout.nValue;
output->Set(NanNew<String>("satoshis"), NanNew<Number>(satoshis)); // can't go above 2 ^ 53 -1
output->Set(NanNew<String>("txid"), NanNew<String>(txid.GetHex()));
output->Set(NanNew<String>("outputIndex"), NanNew<Number>(outputIndex));
// We have a match and push the results to the array
// that is returned as the result
outputs->Set(arrayIndex, output);
arrayIndex++;
}
}
}
outputIndex++;
}
}
NanReturnValue(outputs);
}
/**
* AddMempoolUncheckedTransaction
*/
NAN_METHOD(AddMempoolUncheckedTransaction) {
NanScope();
v8::String::Utf8Value param1(args[0]->ToString());
std::string *input = new std::string(*param1);
CTransaction tx;
if (!DecodeHexTx(tx, *input)) {
return NanThrowError("could not decode tx");
}
bool added = mempool.addUnchecked(tx.GetHash(), CTxMemPoolEntry(tx, 0, 0, 0.0, 1));
NanReturnValue(NanNew<Boolean>(added));
}
/**
* Helpers
*/
@ -1020,7 +1118,8 @@ init(Handle<Object> target) {
NODE_SET_METHOD(target, "getInfo", GetInfo);
NODE_SET_METHOD(target, "isSpent", IsSpent);
NODE_SET_METHOD(target, "getChainWork", GetChainWork);
NODE_SET_METHOD(target, "getMempoolOutputs", GetMempoolOutputs);
NODE_SET_METHOD(target, "addMempoolUncheckedTransaction", AddMempoolUncheckedTransaction);
}
NODE_MODULE(bitcoindjs, init)

View File

@ -1,11 +1,3 @@
/**
* bitcoind.js
* Copyright (c) 2015, BitPay (MIT License)
*
* bitcoindjs.h:
* A bitcoind node.js binding header file.
*/
#include "main.h"
#include "addrman.h"
#include "alert.h"
@ -18,6 +10,7 @@
#include <boost/filesystem.hpp>
#include "nan.h"
#include "scheduler.h"
#include "core_io.h"
NAN_METHOD(StartBitcoind);
NAN_METHOD(OnBlocksReady);
@ -29,3 +22,5 @@ NAN_METHOD(GetTransaction);
NAN_METHOD(GetInfo);
NAN_METHOD(IsSpent);
NAN_METHOD(GetChainWork);
NAN_METHOD(GetMempoolOutputs);
NAN_METHOD(AddMempoolUncheckedTransaction);