Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmd/devp2p/internal/ethtest/chain.go
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ func readAccounts(file string) (map[common.Address]*senderInfo, error) {
for addr, acc := range keys {
pk, err := crypto.HexToECDSA(common.Bytes2Hex(acc.Key))
if err != nil {
return nil, fmt.Errorf("unable to read private key for %s: %v", err, addr)
return nil, fmt.Errorf("unable to read private key for %s: %v", addr, err)
}
accounts[addr] = &senderInfo{Key: pk, Nonce: 0}
}
Expand Down