aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorDrake Burroughs <wildfyre@hotmail.com>2015-10-23 22:49:36 +0800
committerDrake Burroughs <wildfyre@hotmail.com>2015-10-29 01:46:39 +0800
commit05ea8926c32a97d9f193a69076037b7a704d6d92 (patch)
tree704b8897b7a0751fb6e7043bc8cc2baec923a496 /common
parent6b5a42a15ca54749d41c0b29b4a26ebb3a1a53f0 (diff)
downloaddexon-05ea8926c32a97d9f193a69076037b7a704d6d92.tar
dexon-05ea8926c32a97d9f193a69076037b7a704d6d92.tar.gz
dexon-05ea8926c32a97d9f193a69076037b7a704d6d92.tar.bz2
dexon-05ea8926c32a97d9f193a69076037b7a704d6d92.tar.lz
dexon-05ea8926c32a97d9f193a69076037b7a704d6d92.tar.xz
dexon-05ea8926c32a97d9f193a69076037b7a704d6d92.tar.zst
dexon-05ea8926c32a97d9f193a69076037b7a704d6d92.zip
cmd/utils, crypto: add --lightkdf flag for lighter KDF
Diffstat (limited to 'common')
-rw-r--r--common/natspec/natspec_e2e_test.go2
-rw-r--r--common/natspec/natspec_e2e_test.go.orig2
2 files changed, 2 insertions, 2 deletions
diff --git a/common/natspec/natspec_e2e_test.go b/common/natspec/natspec_e2e_test.go
index 706a294ec..5c0d43091 100644
--- a/common/natspec/natspec_e2e_test.go
+++ b/common/natspec/natspec_e2e_test.go
@@ -128,7 +128,7 @@ func testEth(t *testing.T) (ethereum *eth.Ethereum, err error) {
db, _ := ethdb.NewMemDatabase()
addr := common.HexToAddress(testAddress)
core.WriteGenesisBlockForTesting(db, core.GenesisAccount{addr, common.String2Big(testBalance)})
- ks := crypto.NewKeyStorePassphrase(filepath.Join(tmp, "keystore"))
+ ks := crypto.NewKeyStorePassphrase(filepath.Join(tmp, "keystore"), crypto.LightScryptN, crypto.LightScryptP)
am := accounts.NewManager(ks)
keyb, err := crypto.HexToECDSA(testKey)
if err != nil {
diff --git a/common/natspec/natspec_e2e_test.go.orig b/common/natspec/natspec_e2e_test.go.orig
index ae8e17ad9..601a9edbd 100644
--- a/common/natspec/natspec_e2e_test.go.orig
+++ b/common/natspec/natspec_e2e_test.go.orig
@@ -106,7 +106,7 @@ func testEth(t *testing.T) (ethereum *eth.Ethereum, err error) {
}
// create a testAddress
- ks := crypto.NewKeyStorePassphrase("/tmp/eth-natspec/keystore")
+ ks := crypto.NewKeyStorePassphrase("/tmp/eth-natspec/keystore", crypto.LightScryptN, crypto.LightScryptP)
am := accounts.NewManager(ks)
testAccount, err := am.NewAccount("password")
if err != nil {