@@ -50,9 +50,9 @@ func (r Runner) AddAccount(ctx context.Context, name, mnemonic string) (Account,
5050		input  :=  & bytes.Buffer {}
5151		fmt .Fprintln (input , mnemonic )
5252
53- 		if  r .cc .KeyringPassword  !=  ""  {
54- 			fmt .Fprintln (input , r .cc .KeyringPassword )
55- 			fmt .Fprintln (input , r .cc .KeyringPassword )
53+ 		if  r .cc .KeyringPassword ()  !=  ""  {
54+ 			fmt .Fprintln (input , r .cc .KeyringPassword () )
55+ 			fmt .Fprintln (input , r .cc .KeyringPassword () )
5656		}
5757
5858		if  err  :=  r .run (
@@ -80,9 +80,9 @@ func (r Runner) AddAccount(ctx context.Context, name, mnemonic string) (Account,
8080		r .cc .ShowKeyAddressCommand (name ),
8181	}
8282
83- 	if  r .cc .KeyringPassword  !=  ""  {
83+ 	if  r .cc .KeyringPassword ()  !=  ""  {
8484		input  :=  & bytes.Buffer {}
85- 		fmt .Fprintln (input , r .cc .KeyringPassword )
85+ 		fmt .Fprintln (input , r .cc .KeyringPassword () )
8686		opt  =  append (opt , step .Write (input .Bytes ()))
8787	}
8888
@@ -109,9 +109,9 @@ func (r Runner) ShowAccount(ctx context.Context, name string) (Account, error) {
109109		r .cc .ShowKeyAddressCommand (name ),
110110	}
111111
112- 	if  r .cc .KeyringPassword  !=  ""  {
112+ 	if  r .cc .KeyringPassword ()  !=  ""  {
113113		input  :=  & bytes.Buffer {}
114- 		fmt .Fprintln (input , r .cc .KeyringPassword )
114+ 		fmt .Fprintln (input , r .cc .KeyringPassword () )
115115		opt  =  append (opt , step .Write (input .Bytes ()))
116116	}
117117
0 commit comments