Apply suggestions from code review

Co-authored-by: Chuxin Huang <30974572+chuxinh@users.noreply.github.com>
This commit is contained in:
Anton Yip 2022-02-05 18:48:42 +08:00 committed by GitHub
parent a874350ec6
commit 7c4e75697e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,27 +7,27 @@ models:
columns:
- name: block_id
description: The block_id taken from block headers.
description: The `block_id` taken from block headers. The block number that represent the length of the blockchain in blocks.
tests:
- not_null
- name: block_timestamp
description: The block_timestamp taken from block headers.
description: The `block_timestamp` taken from block headers. The time when the block was created.
tests:
- not_null
- name: block_hash
description: The block_hash taken from block headers.
description: The `block_hash` taken from block headers. A unique identifier for that block.
tests:
- not_null
- name: tx_count
description: The tx_count taken from block headers.
description: The `tx_count` taken from block headers. The number of transactions included in the block.
tests:
- not_null
- name: block_author
description: The block_author taken from block headers.
description: The `block_author` taken from block headers. Validators of the blockchain.
tests:
- not_null
@ -62,7 +62,7 @@ models:
- not_null
- name: chunks
description: The chunks taken from block headers.
description: The chunks taken from block headers. Chunk is an aggregation of transactions which are executed within a particular shard.
tests:
- not_null