RunAction* directly on ConsensusState.

This commit is contained in:
Jae Kwon
2014-10-21 01:18:46 -07:00
parent f5d0794756
commit 5ffe406f16
6 changed files with 235 additions and 148 deletions

View File

@ -141,6 +141,9 @@ func (ps *PartSet) BitArray() BitArray {
}
func (ps *PartSet) RootHash() []byte {
if ps == nil {
return nil
}
return ps.rootHash
}