Change bitcoind RPC Password to PasswordField (#3587)

This commit is contained in:
user411 2021-08-23 10:12:13 -06:00 committed by GitHub
parent ac8bdb120c
commit 8cff5b6e33
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -43,7 +43,7 @@ class BitcoindConfigPane(
minWidth = 300 minWidth = 300
} }
private val rpcPasswordTF: TextField = new TextField { private val rpcPasswordTF: PasswordField = new PasswordField {
text = Try(appConfig.rpcPassword).getOrElse("") text = Try(appConfig.rpcPassword).getOrElse("")
minWidth = 300 minWidth = 300
} }