change decrypt params to 2^12 and 6

This commit is contained in:
Daniel Whitenack 2016-06-30 07:53:17 -05:00
parent 89a6b09212
commit 8dcb47d97f
2 changed files with 2 additions and 4 deletions

View File

@ -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

View File

@ -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