From 7c4e75697e039702c707339a1897846216d89c58 Mon Sep 17 00:00:00 2001 From: Anton Yip Date: Sat, 5 Feb 2022 18:48:42 +0800 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Chuxin Huang <30974572+chuxinh@users.noreply.github.com> --- models/core/blocks.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/models/core/blocks.yml b/models/core/blocks.yml index 964fc7a..c109c1a 100644 --- a/models/core/blocks.yml +++ b/models/core/blocks.yml @@ -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