Browse Source

wip: fix code block in ADR

pull/1204/head
Alexander Simmerl 7 years ago
committed by Ethan Buchman
parent
commit
d321839669
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      docs/architecture/adr-008-priv-validator.md

+ 2
- 1
docs/architecture/adr-008-priv-validator.md View File

@ -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


Loading…
Cancel
Save