(contractHash common.Address)
| 171 | } |
| 172 | |
| 173 | func (self *Ledger) GetContractState(contractHash common.Address) (*payload.DeployCode, error) { |
| 174 | return self.ldgStore.GetContractState(contractHash) |
| 175 | } |
| 176 | |
| 177 | func (self *Ledger) GetMerkleProof(proofHeight, rootHeight uint32) ([]common.Uint256, error) { |
| 178 | return self.ldgStore.GetMerkleProof(proofHeight, rootHeight) |
nothing calls this directly
no test coverage detected