Closed ilovelili closed 4 years ago
It is related to nomic-io/tendermint-node#15. It happens because tendermint-node was updated to newer version of tendermint core, but there were probably some api changes so it broke.
As a quick fix you can use my forked version of tendermint-node davvidess/tendermint-node@8edaed7df66790eba1a1b98acf4c30250a14180b where I reverted the update.
But tendermint-node is a sub-dependency of lotion, so you either have to manually set the version in your package-lock.json
or if you use yarn you can declare a sub-dependency by adding this to your package.json
"resolutions": {
"lotion/tendermint-node": "https://github.com/davvidess/tendermint-node/tarball/8edaed7df66790eba1a1b98acf4c30250a14180b"
}
Thank you very much @davvidess !
I got
UnhandledPromiseRejectionWarning: Error: invalid wire type 7 at offset 88 at BufferReader.Reader.skipType
when I try to run the example code the official website provided. The application appears to keep running despite the errors/warnings, but the GCI never shows up.My node version is 10.16.1. I am running it on Ubuntu 18.04