Skip to content

Commit

Permalink
fix: change phrasing to be clearer ( dymint > rollapp rpc )
Browse files Browse the repository at this point in the history
  • Loading branch information
artemijspavlovs committed Dec 8, 2024
1 parent 290ccdb commit 2f12088
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/eibc/init/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ func setupEibcClient(hd consts.HubData, eibcHome string, ki *keys.KeyInfo) error
var rpc string
for {
rpc, _ = pterm.DefaultInteractiveTextInput.WithDefaultText(
"dymint rpc endpoint that you trust, leave empty to fetch from chain (example: rpc.rollapp.dym.xyz)",
"rollapp rpc endpoint that you trust, leave empty to fetch from chain (example: rpc.rollapp.dym.xyz)",
).Show()

if strings.TrimSpace(rpc) == "" {
Expand Down
2 changes: 1 addition & 1 deletion cmd/rollapp/setup/setup.go
Original file line number Diff line number Diff line change
Expand Up @@ -827,7 +827,7 @@ func populateSequencerMetadata(raCfg roller.RollappConfig) error {
for {
// Prompt the user for the RPC URL
rpc, _ = pterm.DefaultInteractiveTextInput.WithDefaultText(
"dymint rpc endpoint that you will provide (example: rpc.rollapp.dym.xyz)",
"rollapp rpc endpoint that you will provide (example: rpc.rollapp.dym.xyz)",
).Show()
if !strings.HasPrefix(rpc, "http://") && !strings.HasPrefix(rpc, "https://") {
rpc = "https://" + rpc
Expand Down

0 comments on commit 2f12088

Please sign in to comment.