From ee2cb59731f8532164db14c56d5ec1bd9953e7d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Henry?= Date: Wed, 8 Nov 2017 14:39:31 +0100 Subject: [PATCH] Remove reminiscent trace of `Base48`. A long time ago we were using a custom Base48 encoding instead of the standard Base58. --- src/proto/alpha/docs/language.md | 2 +- src/utils/base58.mli | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/proto/alpha/docs/language.md b/src/proto/alpha/docs/language.md index 27152c425..2cc580fc6 100644 --- a/src/proto/alpha/docs/language.md +++ b/src/proto/alpha/docs/language.md @@ -1449,7 +1449,7 @@ All domain specific constants are Micheline strings with specific formats: line interface and cannot be forged by hand so their format is of no interest here. - `key`s are `Sha256` hashes of `ed25519` public keys encoded in - `base48` format with the following custom alphabet: + `base58` format with the following custom alphabet: `"eXMNE9qvHPQDdcFx5J86rT7VRm2atAypGhgLfbS3CKjnksB4"`. - `signature`s are `ed25519` signatures as a series of hex-encoded bytes. diff --git a/src/utils/base58.mli b/src/utils/base58.mli index 094ddc797..12afa6aff 100644 --- a/src/utils/base58.mli +++ b/src/utils/base58.mli @@ -91,7 +91,7 @@ val complete: ?alphabet:Alphabet.t -> string -> string list Lwt.t (** {1 Low-level: distinct registering function for economic protocol} *) -(** See [src/proto/environment/base48.mli]} for an inlined +(** See [src/environment/v1/base58.mli]} for an inlined documentation. *) module Make(C: sig type context end) : sig