Skip to content

Commit

Permalink
revert: accidental penumbra change
Browse files Browse the repository at this point in the history
  • Loading branch information
Reecepbcups committed May 4, 2024
1 parent 90c3064 commit f456ced
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions interchain.go
Original file line number Diff line number Diff line change
Expand Up @@ -336,6 +336,15 @@ func (ic *Interchain) Build(ctx context.Context, rep *testreporter.RelayerExecRe
return fmt.Errorf("failed to track blocks: %w", err)
}

// If any configured chain is an instance of Penumbra we need to initialize new pclientd instances for the
// newly created faucet account.
for c := range ic.chains {
err = CreatePenumbraClient(ctx, c, FaucetAccountKeyName)
if err != nil {
return err
}
}

if err := ic.configureRelayerKeys(ctx, rep); err != nil {
// Error already wrapped with appropriate detail.
return err
Expand Down

0 comments on commit f456ced

Please sign in to comment.