rpc: implement getproof RPC

This commit is contained in:
Evgenii Stratonikov 2020-06-04 11:59:22 +03:00
parent 6b42e9306a
commit e38e8aa48a
7 changed files with 206 additions and 0 deletions

View file

@ -121,6 +121,9 @@ func (chain testChain) GetStandByValidators() keys.PublicKeys {
func (chain testChain) GetEnrollments() ([]state.Validator, error) {
panic("TODO")
}
func (chain testChain) GetStateProof(util.Uint256, []byte) ([][]byte, error) {
panic("TODO")
}
func (chain testChain) GetStateRoot(height uint32) (*state.MPTRootState, error) {
panic("TODO")
}