mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-15 09:20:44 +00:00
This commit is contained in:
parent
5ad87e559f
commit
1b5bc181f3
1 changed files with 2 additions and 1 deletions
|
|
@ -38,7 +38,8 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
passwordRegexp = regexp.MustCompile(`personal.[nus]`)
|
// u: unlock, s: signXX, sendXX, n: newAccount, i: importXX
|
||||||
|
passwordRegexp = regexp.MustCompile(`personal.[nusi]`)
|
||||||
onlyWhitespace = regexp.MustCompile(`^\s*$`)
|
onlyWhitespace = regexp.MustCompile(`^\s*$`)
|
||||||
exit = regexp.MustCompile(`^\s*exit\s*;*\s*$`)
|
exit = regexp.MustCompile(`^\s*exit\s*;*\s*$`)
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue