{{define "specific"}}{{$cs := .CoinShortcut}}{{$b := .Block}}{{$data := . -}}
Block {{$b.Height}}
{{$b.Hash}}
Summary
| Transactions |
{{$b.TxCount}} |
| Height |
{{$b.Height}} |
| Confirmations |
{{$b.Confirmations}} |
| Timestamp |
{{formatUnixTime $b.Time}} |
| Size (bytes) |
{{$b.Size}} |
| Version |
{{$b.Version}} |
| Merkle Root |
{{$b.MerkleRoot}} |
| Nonce |
{{$b.Nonce}} |
| Bits |
{{$b.Bits}} |
| Difficulty |
{{$b.Difficulty}} |
{{- if $b.Transactions -}}
Transactions
{{- range $tx := $b.Transactions}}{{$data := setTxToTemplateData $data $tx}}{{template "txdetail" $data}}{{end -}}
{{end}}{{end}}