bridge: fix terraChainID typo
I share the blame for missing this during review :P
This commit is contained in:
parent
7201b64a77
commit
c5b59ac6a0
|
@ -56,7 +56,7 @@ var (
|
|||
terraSupport *bool
|
||||
terraWS *string
|
||||
terraLCD *string
|
||||
terraChaidID *string
|
||||
terraChainID *string
|
||||
terraContract *string
|
||||
terraKeyPath *string
|
||||
|
||||
|
@ -93,7 +93,7 @@ func init() {
|
|||
terraSupport = BridgeCmd.Flags().Bool("terra", false, "Turn on support for Terra")
|
||||
terraWS = BridgeCmd.Flags().String("terraWS", "", "Path to terrad root for websocket connection")
|
||||
terraLCD = BridgeCmd.Flags().String("terraLCD", "", "Path to LCD service root for http calls")
|
||||
terraChaidID = BridgeCmd.Flags().String("terraChainID", "", "Terra chain ID, used in LCD client initialization")
|
||||
terraChainID = BridgeCmd.Flags().String("terraChainID", "", "Terra chain ID, used in LCD client initialization")
|
||||
terraContract = BridgeCmd.Flags().String("terraContract", "", "Wormhole contract address on Terra blockhain")
|
||||
terraKeyPath = BridgeCmd.Flags().String("terraKey", "", "Path to mnemonic for account paying gas for submitting transactions to Terra")
|
||||
|
||||
|
@ -287,8 +287,8 @@ func runBridge(cmd *cobra.Command, args []string) {
|
|||
if *terraLCD == "" {
|
||||
logger.Fatal("Please specify --terraLCD")
|
||||
}
|
||||
if *terraChaidID == "" {
|
||||
logger.Fatal("Please specify --terraChaidID")
|
||||
if *terraChainID == "" {
|
||||
logger.Fatal("Please specify --terraChainID")
|
||||
}
|
||||
if *terraContract == "" {
|
||||
logger.Fatal("Please specify --terraContract")
|
||||
|
@ -425,7 +425,7 @@ func runBridge(cmd *cobra.Command, args []string) {
|
|||
*ethRPC,
|
||||
*terraSupport,
|
||||
*terraLCD,
|
||||
*terraChaidID,
|
||||
*terraChainID,
|
||||
*terraContract,
|
||||
terraFeePayer,
|
||||
)
|
||||
|
|
|
@ -316,7 +316,7 @@ func (p *Processor) terraVAASubmission(ctx context.Context, signed *vaa.VAA, has
|
|||
|
||||
observationsDirectSubmissionsTotal.WithLabelValues("terra").Inc()
|
||||
|
||||
tx, err := terra.SubmitVAA(ctx, p.terraLCD, p.terraChaidID, p.terraContract, p.terraFeePayer, signed)
|
||||
tx, err := terra.SubmitVAA(ctx, p.terraLCD, p.terraChainID, p.terraContract, p.terraFeePayer, signed)
|
||||
if err != nil {
|
||||
if strings.Contains(err.Error(), "VaaAlreadyExecuted") {
|
||||
p.logger.Info("VAA already submitted to Terra by another node, ignoring",
|
||||
|
|
|
@ -65,7 +65,7 @@ type Processor struct {
|
|||
|
||||
terraEnabled bool
|
||||
terraLCD string
|
||||
terraChaidID string
|
||||
terraChainID string
|
||||
terraContract string
|
||||
terraFeePayer string
|
||||
|
||||
|
@ -97,7 +97,7 @@ func NewProcessor(
|
|||
devnetEthRPC string,
|
||||
terraEnabled bool,
|
||||
terraLCD string,
|
||||
terraChaidID string,
|
||||
terraChainID string,
|
||||
terraContract string,
|
||||
terraFeePayer string) *Processor {
|
||||
|
||||
|
@ -115,7 +115,7 @@ func NewProcessor(
|
|||
|
||||
terraEnabled: terraEnabled,
|
||||
terraLCD: terraLCD,
|
||||
terraChaidID: terraChaidID,
|
||||
terraChainID: terraChainID,
|
||||
terraContract: terraContract,
|
||||
terraFeePayer: terraFeePayer,
|
||||
|
||||
|
@ -179,7 +179,7 @@ func (p *Processor) checkDevModeGuardianSetUpdate(ctx context.Context) error {
|
|||
// Submit to Terra
|
||||
go func() {
|
||||
for {
|
||||
trxResponse, err := terra.SubmitVAA(timeout, p.terraLCD, p.terraChaidID, p.terraContract, p.terraFeePayer, v)
|
||||
trxResponse, err := terra.SubmitVAA(timeout, p.terraLCD, p.terraChainID, p.terraContract, p.terraFeePayer, v)
|
||||
if err != nil {
|
||||
p.logger.Error("failed to submit Terra devnet guardian set change, retrying", zap.Error(err))
|
||||
time.Sleep(1 * time.Second)
|
||||
|
|
Loading…
Reference in New Issue