|
|
@ -157,7 +157,8 @@ func main() { |
|
|
|
if blob, err = ioutil.ReadFile(*accPassFlag); err != nil { |
|
|
|
if blob, err = ioutil.ReadFile(*accPassFlag); err != nil { |
|
|
|
log.Crit("Failed to read account password contents", "file", *accPassFlag, "err", err) |
|
|
|
log.Crit("Failed to read account password contents", "file", *accPassFlag, "err", err) |
|
|
|
} |
|
|
|
} |
|
|
|
pass := string(blob) |
|
|
|
// Delete trailing newline in password
|
|
|
|
|
|
|
|
pass := strings.TrimSuffix(string(blob), "\n") |
|
|
|
|
|
|
|
|
|
|
|
ks := keystore.NewKeyStore(filepath.Join(os.Getenv("HOME"), ".faucet", "keys"), keystore.StandardScryptN, keystore.StandardScryptP) |
|
|
|
ks := keystore.NewKeyStore(filepath.Join(os.Getenv("HOME"), ".faucet", "keys"), keystore.StandardScryptN, keystore.StandardScryptP) |
|
|
|
if blob, err = ioutil.ReadFile(*accJSONFlag); err != nil { |
|
|
|
if blob, err = ioutil.ReadFile(*accJSONFlag); err != nil { |
|
|
|