2

我在我的节点 js 服务器中使用乳液 js,它被用作区块链技术。有时我让 Tendermint 节点崩溃。由于我是区块链概念的新手,我不知道崩溃背后的原因。

我没有在节点模块内做任何更改

const admin = require("firebase-admin")
const db = admin.database()

let app = require('lotion')
({
  initialState: {count: 0}
})

function txHandler(state, tx, chainInfo) {
  state.count++
}

var port = process.env.PORT || 3000
app.use(txHandler)
app.listen(port)

db.ref('Deal').orderByChild('createdTime').startAt(Date.now())
.on("child_added", function(snapshot, prevChildKey) {

   var txnObject = {}
   txnObject.senderId = snapshot.val().senderId
   txnObject.name = snapshot.val().name
   txnObject.phoneNumber = snapshot.val().phoneNumber
   txnObject.receiverId = snapshot.val().receiverId
   txnObject.amount = snapshot.val().amount

   axios.post('http://localhost:' + port + '/txs', txnObject).then(function(response){
   console.log('saved successfully')
   }).catch(function(error) {
       console.log('failed to save')
       console.log(error)
  })
})

这是我的 index.js 文件内容。

我得到的错误是:

/Users/chandrika/Documents/lotion-js/node_modules/supercop.js/lib.js:97
      throw ex;
      ^

Error: Tendermint node crashed
    at ChildProcess.tendermintProcess.on (/Users/chandrika/Documents/lotion-js/node_modules/lotion/lib/tendermint.js:90:13)
    at ChildProcess.emit (events.js:160:13)
    at maybeClose (internal/child_process.js:943:16)
    at Socket.stream.socket.on (internal/child_process.js:363:11)
    at Socket.emit (events.js:160:13)
    at Pipe._handle.close [as _onclose] (net.js:562:12)

谁能帮我?先感谢您!

4

1 回答 1

1

在终端中尝试此命令

$ rm -rf ~/.lotion

然后$node index.js 这对我有用!!!

于 2018-02-27T08:04:07.177 回答