change decrypt params to 2^12 and 6
This commit is contained in:
parent
89a6b09212
commit
8dcb47d97f
|
@ -15,8 +15,8 @@ import (
|
|||
)
|
||||
|
||||
var (
|
||||
scryptN = 262144
|
||||
scryptP = 1
|
||||
scryptN = 4096
|
||||
scryptP = 6
|
||||
)
|
||||
|
||||
// createAccount creates an internal geth account
|
||||
|
|
|
@ -39,8 +39,6 @@ func main() {
|
|||
// Placeholder for anything we want to run by default
|
||||
fmt.Println("You are running statusgo!")
|
||||
|
||||
createAndStartNode(".ethereum")
|
||||
|
||||
}
|
||||
|
||||
// MakeNode create a geth node entity
|
||||
|
|
Loading…
Reference in New Issue