diff --git a/internal/utxorpc/sync.go b/internal/utxorpc/sync.go index 3f2f42b..af8ca9a 100644 --- a/internal/utxorpc/sync.go +++ b/internal/utxorpc/sync.go @@ -191,9 +191,8 @@ func (s *chainSyncServiceServer) FollowTip( blockIdx := blockRef.GetIndex() blockHash := blockRef.GetHash() log.Printf("BlockRef: idx: %d, hash: %x", blockIdx, blockHash) - hash, _ := hex.DecodeString(string(blockHash)) slot := uint64(blockIdx) - point = ocommon.NewPoint(slot, hash) + point = ocommon.NewPoint(slot, blockHash) } } else { tip, _ := oConn.ChainSync().Client.GetCurrentTip()