We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a8a473 commit 2d8820eCopy full SHA for 2d8820e
models/weaveinit/run_l1_node.go
@@ -644,12 +644,14 @@ type GenesisEndpointInput struct {
644
}
645
646
func NewGenesisEndpointInput(state *RunL1NodeState) *GenesisEndpointInput {
647
- return &GenesisEndpointInput{
+ model := &GenesisEndpointInput{
648
TextInput: utils.NewTextInput(),
649
state: state,
650
question: "Please specify the endpoint to fetch genesis.json",
651
err: nil,
652
653
+ model.WithPlaceholder("Enter endpoint URL")
654
+ return model
655
656
657
func (m *GenesisEndpointInput) GetQuestion() string {
0 commit comments