Merge pull request #19731 from holiman/fix_19707

accounts/keystore: fix #19707, avoid keyword as variable name
This commit is contained in:
Péter Szilágyi 2019-06-18 11:24:11 +03:00 committed by GitHub
commit cf47ee5339
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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