我在我的node js服务器中使用lotion js,它被用作区块链技术。有时我会让Tendermint节点崩溃。由于我是区块链概念的新手,我不知道崩溃背后的原因。
我没有在node模块中做任何更改。
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)有谁可以帮我?提前谢谢你!
发布于 2018-02-27 16:04:07
在终端中尝试此命令
$ rm -rf ~/.lotion然后$node index.js这对我很有效!
https://stackoverflow.com/questions/48986816
复制相似问题