From d3218396691aae31f83713f10e54816090561b1e Mon Sep 17 00:00:00 2001 From: Alexander Simmerl Date: Wed, 17 Jan 2018 17:17:23 +0100 Subject: [PATCH] wip: fix code block in ADR --- docs/architecture/adr-008-priv-validator.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/architecture/adr-008-priv-validator.md b/docs/architecture/adr-008-priv-validator.md index dfee112c6..94d164785 100644 --- a/docs/architecture/adr-008-priv-validator.md +++ b/docs/architecture/adr-008-priv-validator.md @@ -8,7 +8,7 @@ For instance, see https://github.com/tendermint/tendermint/issues/673 The goal is to have a clean PrivValidator interface like: -`` +``` type PrivValidator interface { Address() data.Bytes PubKey() crypto.PubKey @@ -60,6 +60,7 @@ type ValidatorID struct { Address data.Bytes `json:"address"` PubKey crypto.PubKey `json:"pub_key"` } +``` ### LastSignedInfo