Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
huangzhen1997 committed Jan 9, 2025
1 parent 3e78cb8 commit df7ef82
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/capabilities/ccip/delegate.go
Original file line number Diff line number Diff line change
Expand Up @@ -292,9 +292,10 @@ func (d *Delegate) getTransmitterKeys(ctx context.Context, relayIDs []types.Rela
return
}()
case relay.NetworkSolana:
// Implement EnabledAddressesForChain for Solana as well ?
solKeys, err := d.keystore.Solana().GetAll()
if err != nil {
return nil, fmt.Errorf("error getting enabled addresses for chain: %s %w", chainID.String(), err)
return nil, fmt.Errorf("error getting all keys Solana: %w", err)
}

transmitterKeys[relayID] = func() (r []string) {
Expand Down

0 comments on commit df7ef82

Please sign in to comment.