Skip to content

Commit

Permalink
Merge branch 'stage' of github.com:Bitcoin-com/rest.bitcoin.com into …
Browse files Browse the repository at this point in the history
…stage
  • Loading branch information
Gabriel Cardona committed Nov 7, 2018
2 parents d111c93 + 2459f3c commit c304dcf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
"node-mocks-http": "^1.7.0",
"nodemon": "^1.18.1",
"nyc": "^11.6.0",
"pandacash-cli": "^0.4.0",
"pandacash-core": "^0.1.0",
"prettier": "^1.14.2",
"sinon": "^6.3.4",
"typescript": "^3.1.4"
Expand Down
7 changes: 5 additions & 2 deletions test/v2/helpers/panda.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/**
* Read more about panda here: https://panda-suite.github.io/
*/
const panda = require("pandacash-cli")
const panda = require("pandacash-core")

const runLocalNode = done => {
const server = panda.server({
Expand All @@ -14,7 +14,10 @@ const runLocalNode = done => {
debug: false
})

server.listen(48332, (err, pandaCashCore) => {
server.listen({
port: 48332,
walletPort: 48333,
}, (err, pandaCashCore) => {
if (err) return console.error(err)

done()
Expand Down

0 comments on commit c304dcf

Please sign in to comment.