mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
cmd/clef: document clef_New, update API versioning
This commit is contained in:
parent
ff7e053a28
commit
be66762e46
2 changed files with 12 additions and 1 deletions
|
|
@ -10,6 +10,17 @@ TL;DR: Given a version number MAJOR.MINOR.PATCH, increment the:
|
||||||
|
|
||||||
Additional labels for pre-release and build metadata are available as extensions to the MAJOR.MINOR.PATCH format.
|
Additional labels for pre-release and build metadata are available as extensions to the MAJOR.MINOR.PATCH format.
|
||||||
|
|
||||||
|
### 7.0.1
|
||||||
|
|
||||||
|
Added `clef_New` to the internal API calleable from a UI.
|
||||||
|
|
||||||
|
> `New` creates a new password protected Account. The private key is protected with
|
||||||
|
> the given password. Users are responsible to backup the private key that is stored
|
||||||
|
> in the keystore location thas was specified when this API was created.
|
||||||
|
> This method is the same as New on the external API, the difference being that
|
||||||
|
> this implementation does not ask for confirmation, since it's initiated by
|
||||||
|
> the user
|
||||||
|
|
||||||
### 7.0.0
|
### 7.0.0
|
||||||
|
|
||||||
- The `message` field was renamed to `messages` in all data signing request methods to better reflect that it's a list, not a value.
|
- The `message` field was renamed to `messages` in all data signing request methods to better reflect that it's a list, not a value.
|
||||||
|
|
|
||||||
|
|
@ -43,7 +43,7 @@ const (
|
||||||
// ExternalAPIVersion -- see extapi_changelog.md
|
// ExternalAPIVersion -- see extapi_changelog.md
|
||||||
ExternalAPIVersion = "6.0.0"
|
ExternalAPIVersion = "6.0.0"
|
||||||
// InternalAPIVersion -- see intapi_changelog.md
|
// InternalAPIVersion -- see intapi_changelog.md
|
||||||
InternalAPIVersion = "7.0.0"
|
InternalAPIVersion = "7.0.1"
|
||||||
)
|
)
|
||||||
|
|
||||||
// ExternalAPI defines the external API through which signing requests are made.
|
// ExternalAPI defines the external API through which signing requests are made.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue