Skip to content

Commit

Permalink
Crownify regtest
Browse files Browse the repository at this point in the history
  • Loading branch information
zhanzhenzhen committed Jan 28, 2018
1 parent 6e5cacf commit cb9f702
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions regtest/bitcoind.js
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ describe('Bitcoind Functionality', function() {
tx.hex.should.be.a('string');
tx.locktime.should.equal(0);
tx.feeSatoshis.should.equal(0);
tx.outputSatoshis.should.equal(50 * 1e8);
tx.outputSatoshis.should.equal(10 * 1e8);
tx.inputSatoshis.should.equal(0);
tx.inputs.length.should.equal(1);
tx.outputs.length.should.equal(1);
Expand All @@ -449,7 +449,7 @@ describe('Bitcoind Functionality', function() {
should.equal(tx.inputs[0].scriptAsm, null);
should.equal(tx.inputs[0].address, null);
should.equal(tx.inputs[0].satoshis, null);
tx.outputs[0].satoshis.should.equal(50 * 1e8);
tx.outputs[0].satoshis.should.equal(10 * 1e8);
tx.outputs[0].script.should.be.a('string');
tx.outputs[0].scriptAsm.should.be.a('string');
tx.outputs[0].spentTxId.should.be.a('string');
Expand Down

0 comments on commit cb9f702

Please sign in to comment.