bitcoin-nanopayment
Version:
Send probabilistic Bitcoin nanopayments
50 lines (37 loc) • 1.61 kB
JavaScript
// Copyright 2013 Paul Kernfeld
// This file is part of bitcoin-nanopayment.
// bitcoin-nanopayment is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// bitcoin-nanopayment is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with bitcoin-nanopayment. If not, see <http://www.gnu.org/licenses/>.
;
// Internal imports
var nanopayments = require('../lib/bitcoin-nanopayment');
var Client = nanopayments.Client;
var testPayment = require('../lib/test-payment');
// External imports
var assert = require('assert');
var fs = require('fs');
var util = require('util');
// Load configs
var bitcoindConfigText = fs.readFileSync('config/bitcoind.json', 'utf8');
var bitcoindConfig = JSON.parse(bitcoindConfigText);
var clientConfig = {
bitcoind: bitcoindConfig
};
var accountConfigText = fs.readFileSync('config/test-accounts.json', 'utf8');
var accountConfig = JSON.parse(accountConfigText);
// Send a transaction from the source address to the destination address
{
var client = new Client(clientConfig);
testPayment.test(client, accountConfig, function(err) {
assert(!err, util.inspect(err));
console.log('Test passed');
});
}