Log sapling height

This commit is contained in:
Aditya Kulkarni 2019-09-20 14:49:47 -07:00
parent 3b4573c4f0
commit cf0b87ac9b
2 changed files with 15 additions and 1 deletions

View File

@ -15,6 +15,7 @@ import (
"google.golang.org/grpc/peer"
"google.golang.org/grpc/reflection"
"github.com/adityapk00/lightwalletd/common"
"github.com/adityapk00/lightwalletd/frontend"
"github.com/adityapk00/lightwalletd/walletrpc"
)
@ -159,6 +160,16 @@ func main() {
}
}
// Get the sapling activation height from the RPC
saplingHeight, chainName, err := common.GetSaplingInfo(rpcClient)
if err != nil {
log.WithFields(logrus.Fields{
"error": err,
}).Warn("Unable to get sapling activation height")
}
log.WithField("saplingHeight", saplingHeight).Info("Got sapling height ", saplingHeight, " chain ", chainName)
// Compact transaction service initialization
service, err := frontend.NewSQLiteStreamer(opts.dbPath, rpcClient, log)
if err != nil {

View File

@ -245,7 +245,10 @@ func (s *SqlStreamer) GetTransaction(ctx context.Context, txf *walletrpc.TxFilte
// GetLightdInfo gets the LightWalletD (this server) info
func (s *SqlStreamer) GetLightdInfo(ctx context.Context, in *walletrpc.Empty) (*walletrpc.LightdInfo, error) {
saplingHeight, chainName, _ := common.GetSaplingInfo(s.client)
saplingHeight, chainName, err := common.GetSaplingInfo(s.client)
if err != nil {
return nil, err
}
// TODO these are called Error but they aren't at the moment.
// A success will return code 0 and message txhash.