Skip to content

Commit

Permalink
cmd/geth: make test pass on a pi4 by using lightkdf (ethereum#24314)
Browse files Browse the repository at this point in the history
  • Loading branch information
ligi authored Jan 31, 2022
1 parent 64c53ed commit 0c1bd22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/geth/accountcmd_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ func importAccountWithExpect(t *testing.T, key string, expected string) {
if err := ioutil.WriteFile(passwordFile, []byte("foobar"), 0600); err != nil {
t.Error(err)
}
geth := runGeth(t, "account", "import", keyfile, "-password", passwordFile)
geth := runGeth(t, "--lightkdf", "account", "import", keyfile, "-password", passwordFile)
defer geth.ExpectExit()
geth.Expect(expected)
}
Expand Down

0 comments on commit 0c1bd22

Please sign in to comment.