forked from cerc-io/plugeth
accounts/keystore: fix #19707, avoid keyword as variable name
This commit is contained in:
parent
d6ccfd92f7
commit
2046d66fe5
@ -379,9 +379,9 @@ func tmpKeyStore(t *testing.T, encrypted bool) (string, *KeyStore) {
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
new := NewPlaintextKeyStore
|
||||
newKs := NewPlaintextKeyStore
|
||||
if encrypted {
|
||||
new = func(kd string) *KeyStore { return NewKeyStore(kd, veryLightScryptN, veryLightScryptP) }
|
||||
newKs = func(kd string) *KeyStore { return NewKeyStore(kd, veryLightScryptN, veryLightScryptP) }
|
||||
}
|
||||
return d, new(d)
|
||||
return d, newKs(d)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user