lncli: remove new line from password confirmation

The password instruction in the same function and many other related
outputs use Printf except of Println.
This commit is contained in:
Candle 2020-07-22 18:33:49 +00:00 committed by Candle
parent cfbc365c20
commit c8ad071011

View File

@ -1481,7 +1481,7 @@ func capturePassword(instruction string, optional bool,
continue
}
fmt.Println("Confirm password:")
fmt.Printf("Confirm password: ")
passwordConfirmed, err := terminal.ReadPassword(
int(syscall.Stdin),
)