core: implement (*Blockchain).GetStandByCommitee()

This commit is contained in:
Evgenii Stratonikov 2020-08-05 11:30:14 +03:00
parent 05c24d9401
commit 27169d140f
4 changed files with 22 additions and 5 deletions

View file

@ -42,6 +42,7 @@ type Blockchainer interface {
GetNEP5TransferLog(util.Uint160) *state.NEP5TransferLog
GetNEP5Balances(util.Uint160) *state.NEP5Balances
GetValidators() ([]*keys.PublicKey, error)
GetStandByCommittee() keys.PublicKeys
GetStandByValidators() keys.PublicKeys
GetScriptHashesForVerifying(*transaction.Transaction) ([]util.Uint160, error)
GetStateRoot(height uint32) (*state.MPTRootState, error)