| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- package processor
- import (
- "context"
- "encoding/hex"
- "github.com/prometheus/client_golang/prometheus"
- "github.com/ethereum/go-ethereum/crypto"
- "go.uber.org/zap"
- "github.com/certusone/wormhole/bridge/pkg/supervisor"
- "github.com/certusone/wormhole/bridge/pkg/vaa"
- )
- var (
- vaaInjectionsTotal = prometheus.NewCounter(
- prometheus.CounterOpts{
- Name: "wormhole_vaa_injections_total",
- Help: "Total number of injected VAA queued for broadcast",
- })
- )
- func init() {
- prometheus.MustRegister(vaaInjectionsTotal)
- }
- // handleInjection processes a pre-populated VAA injected locally.
- func (p *Processor) handleInjection(ctx context.Context, v *vaa.VAA) {
- // Generate digest of the unsigned VAA.
- digest, err := v.SigningMsg()
- if err != nil {
- panic(err)
- }
- // The internal originator is responsible for logging the full VAA, just log the digest here.
- supervisor.Logger(ctx).Info("signing injected VAA",
- zap.Stringer("digest", digest))
- // Sign the digest using our node's guardian key.
- s, err := crypto.Sign(digest.Bytes(), p.gk)
- if err != nil {
- panic(err)
- }
- p.logger.Info("observed and signed injected VAA",
- zap.String("digest", hex.EncodeToString(digest.Bytes())),
- zap.String("signature", hex.EncodeToString(s)))
- vaaInjectionsTotal.Inc()
- p.broadcastSignature(v, s)
- }
|