Browse Source

Removed spaces between code and comment.

cl-refactor
chriseth 10 years ago
parent
commit
3264250b5d
  1. 6
      libethcore/KeyManager.h

6
libethcore/KeyManager.h

@ -38,8 +38,10 @@ struct KeyInfo
KeyInfo() = default;
KeyInfo(h256 const& _passHash, std::string const& _accountName): passHash(_passHash), accountName(_accountName) {}
h256 passHash; ///< Hash of the password or h256() / UnknownPassword if unknown.
std::string accountName; ///< Name of the key, or JSON key info if begins with '{'.
/// Hash of the password or h256() / UnknownPassword if unknown.
h256 passHash;
/// Name of the key, or JSON key info if begins with '{'.
std::string accountName;
};
static h256 const UnknownPassword;

Loading…
Cancel
Save