(count, height int32, b *types.Block)
| 466 | } |
| 467 | |
| 468 | func (a *explorerAPI) formatBlockV2(count, height int32, b *types.Block) (res map[string]interface{}) { |
| 469 | res = a.formatBlock(height, b) |
| 470 | res["block"].(map[string]interface{})["count"] = count |
| 471 | return |
| 472 | } |
| 473 | |
| 474 | func (a *explorerAPI) formatBlockV3(count, height int32, b *types.Block, |
| 475 | pagination *paginationOps) (res map[string]interface{}) { |
no test coverage detected