perf(v4): Ported recent SLP validate changes to new v4 route

This commit is contained in:
Chris Troutner
2020-12-05 18:37:59 -08:00
parent a260f7506a
commit 8a7b391486
54 changed files with 20864 additions and 9 deletions
+29
View File
@@ -0,0 +1,29 @@
'use strict'
/**
* Read more about panda here: https://panda-suite.github.io/
*/
const panda = require('pandacash-core')
const runLocalNode = done => {
const server = panda.server({
// always the same mnemonic
// mnemonic: "cigar magnet ocean purchase travel damp snack alone theme budget wagon wrong",
seedAccounts: true,
enableLogs: false,
debug: false
})
server.listen({
port: 48332,
walletPort: 48333
}, (err, pandaCashCore) => {
if (err) return console.error(err)
done()
})
}
module.exports = {
runLocalNode
}