blockchain-link
Version:
Link - The Blockchain File Sharing Protocol
21 lines (15 loc) • 384 B
JavaScript
// Generated by CoffeeScript 1.6.3
(function() {
var bitcoin, client, db;
bitcoin = require('bitcoin');
client = new bitcoin.Client({
host: 'localhost',
port: 8332,
user: 'Kevlar',
pass: 'zabbas'
});
db = require('./linkDB').getDB("Feathercoin", client);
setInterval(function() {
return db.search("pirate", console.log);
}, 100);
}).call(this);