mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-04-13 13:18:35 +00:00
Prevent crash during import of privkeys.
@obscuren please check if this was commented out for a reason
This commit is contained in:
parent
c9db87277b
commit
a1dcc5cd17
1 changed files with 2 additions and 3 deletions
|
|
@ -64,10 +64,9 @@ func main() {
|
||||||
log.SetOutput(logfile)
|
log.SetOutput(logfile)
|
||||||
logSys = log.New(logfile, "", flags)
|
logSys = log.New(logfile, "", flags)
|
||||||
logger.AddLogSystem(logSys)
|
logger.AddLogSystem(logSys)
|
||||||
}
|
} else {
|
||||||
/*else {
|
|
||||||
logSys = log.New(os.Stdout, "", flags)
|
logSys = log.New(os.Stdout, "", flags)
|
||||||
}*/
|
}
|
||||||
|
|
||||||
ethchain.InitFees()
|
ethchain.InitFees()
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue