Commit 787d71d6 authored by Jeffrey Wilcke's avatar Jeffrey Wilcke

Merge pull request #2056 from fjl/fix-account-format

crypto: "Crypto" -> "crypto" in web3 key format
parents b2ffb76c 032453b3
......@@ -51,14 +51,14 @@ type plainKeyJSON struct {
type encryptedKeyJSONV3 struct {
Address string `json:"address"`
Crypto cryptoJSON
Crypto cryptoJSON `json:"crypto"`
Id string `json:"id"`
Version int `json:"version"`
}
type encryptedKeyJSONV1 struct {
Address string `json:"address"`
Crypto cryptoJSON
Crypto cryptoJSON `json:"crypto"`
Id string `json:"id"`
Version string `json:"version"`
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment