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