(txHash common.Uint256)
| 470 | } |
| 471 | |
| 472 | func (this *BlockStore) getTransactionKey(txHash common.Uint256) []byte { |
| 473 | key := bytes.NewBuffer(nil) |
| 474 | key.WriteByte(byte(scom.DATA_TRANSACTION)) |
| 475 | txHash.Serialize(key) |
| 476 | return key.Bytes() |
| 477 | } |
| 478 | |
| 479 | func (this *BlockStore) getHeaderKey(blockHash common.Uint256) []byte { |
| 480 | data := blockHash.ToArray() |
no test coverage detected