Remove SQL from grpc server

This commit is contained in:
Aditya Kulkarni
2019-09-25 13:28:55 -07:00
parent b89062cd53
commit d56fe7bf1a
3 changed files with 109 additions and 65 deletions

View File

@@ -171,7 +171,7 @@ func main() {
log.WithField("saplingHeight", saplingHeight).Info("Got sapling height ", saplingHeight, " chain ", chainName)
// Compact transaction service initialization
service, err := frontend.NewSQLiteStreamer(opts.dbPath, rpcClient, log)
service, err := frontend.NewSQLiteStreamer(rpcClient, log)
if err != nil {
log.WithFields(logrus.Fields{
"db_path": opts.dbPath,