mirror of
https://github.com/sparrowwallet/drongo.git
synced 2024-11-02 18:26:43 +00:00
preserve capitalization in keystore naming in policy script
This commit is contained in:
parent
891499aff0
commit
1aeaacaf59
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ public class Keystore {
|
|||
}
|
||||
|
||||
public String getScriptName() {
|
||||
return label.replace(" ", "").toLowerCase();
|
||||
return label.replace(" ", "");
|
||||
}
|
||||
|
||||
public void setLabel(String label) {
|
||||
|
|
Loading…
Reference in a new issue