Merge pull request #19731 from holiman/fix_19707
accounts/keystore: fix #19707, avoid keyword as variable name
This commit is contained in:
		@@ -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)
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user