In this tutorial,
The KVStore app cannot be built. The errors are:
go build
*KVStoreApplication does not implement “github.com/tendermint/tendermint/abci/types”.Application (missing ApplySnapshotChunk method)
I google for 1 hour. I don’t know what is wrong with the tendermint tutorial
Anyone ? It seems that very few people are using tendermint built in app.
I have figured out the problem. The app.go has to implement the missing ApplySnapshotChunk method.
Well. The tendermint core document is obsolete.
1 Like
Hi @victory015. Can you please post the solution here? It would be very helpful.
Thank you.
I have uploaded the code to my github
check out the link:
Thank you very much. I was comparing my code with yours and found that the ApplySnapshotChunk method was already implemented from tendermint tutorial and noticed that it was not having the SetOptions method.
Thank you,