Skip to content
This repository has been archived by the owner on Apr 3, 2019. It is now read-only.

Commit

Permalink
Merge pull request #139 from matiu/bug/fix-deps
Browse files Browse the repository at this point in the history
fix deps and regresion
  • Loading branch information
cmgustavo committed Mar 10, 2015
2 parents 22542ee + 8169957 commit a3e1fc6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -2,7 +2,7 @@
"name": "bitcore-wallet-service",
"description": "A service for Mutisig HD Bitcoin Wallets",
"author": "BitPay Inc",
"version": "0.0.4",
"version": "0.0.5",
"keywords": [
"bitcoin",
"copay",
Expand All @@ -20,7 +20,7 @@
"dependencies": {
"async": "^0.9.0",
"bitcore": "^0.11.2",
"bitcore-wallet-utils": "0.0.2",
"bitcore-wallet-utils": "0.0.3",
"bitcore-explorers": "^0.9.1",
"body-parser": "^1.11.0",
"coveralls": "^2.11.2",
Expand Down
2 changes: 1 addition & 1 deletion test/integration/server.js
Expand Up @@ -856,7 +856,7 @@ describe('Copay server', function() {

it('should create a tx using the uxtos with minimum amount first', function(done) {
helpers.stubUtxos(server, wallet, [100, 200, 300], function() {
var txOpts = helpers.createProposalOpts('18PzpUFkFZE8zKWUPvfykkTxmB9oMR8qP7', 150, 'some message', TestData.copayers[0].privKey);
var txOpts = helpers.createProposalOpts('18PzpUFkFZE8zKWUPvfykkTxmB9oMR8qP7', 150, 'some message', TestData.copayers[0].privKey_1H_0);
server.createTx(txOpts, function(err, tx) {
should.not.exist(err);
should.exist(tx);
Expand Down

0 comments on commit a3e1fc6

Please sign in to comment.