Skip to content

Instantly share code, notes, and snippets.

@jointhepartypooper
jointhepartypooper / gist:5fa889e9e6e7fb6b6d5b
Last active December 1, 2015 17:26
hookGetFindstakeData
var http = require('http');
function checkTxPresent(txId, txIndex, cb) {
var keytx = 'to' + txId + '_' + txIndex;
var str = '';
var fileurl = "http://peercoinfindstakedata.divshot.io/json/" + keytx + '.json';
var handleRes = function (res) {
var isOK = (res.statusCode == 200);
res.on('data', function (chunk) {