diff --git a/zetaclient/chains/solana/observer/inbound.go b/zetaclient/chains/solana/observer/inbound.go index cf05f94cf9..ef459cbd7a 100644 --- a/zetaclient/chains/solana/observer/inbound.go +++ b/zetaclient/chains/solana/observer/inbound.go @@ -68,7 +68,7 @@ func (ob *Observer) WatchInbound(ctx context.Context) error { } } -// ObserveInbound observes the Bitcoin chain for inbounds and post votes to zetacore. +// ObserveInbound observes the Solana chain for inbounds and post votes to zetacore. func (ob *Observer) ObserveInbound(ctx context.Context) error { chainID := ob.Chain().ChainId pageLimit := solanarpc.DefaultPageLimit diff --git a/zetaclient/chains/solana/signer/signer.go b/zetaclient/chains/solana/signer/signer.go index 41c4c3efdd..2b766a49f5 100644 --- a/zetaclient/chains/solana/signer/signer.go +++ b/zetaclient/chains/solana/signer/signer.go @@ -23,7 +23,7 @@ import ( var _ interfaces.ChainSigner = (*Signer)(nil) -// Signer deals with signing BTC transactions and implements the ChainSigner interface +// Signer deals with signing Solana transactions and implements the ChainSigner interface type Signer struct { *base.Signer @@ -41,7 +41,7 @@ type Signer struct { pda solana.PublicKey } -// NewSigner creates a new Bitcoin signer +// NewSigner creates a new Solana signer func NewSigner( chain chains.Chain, chainParams observertypes.ChainParams,