Skip to content

Commit 8aced84

Browse files
committed
remove cSpace abbreviation. Resolves #775
1 parent 1306175 commit 8aced84

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/general/conflux-basics/gas.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ To elaborate, all transactions on Conflux are processed in its virtual machine,
2828

2929
:::note
3030

31-
In Conflux's cSpace, [storage collateral](../../core/core-space-basics/storage) is used as another resource other than gas for storing data required during transaction execution.
31+
In Conflux's core space, [storage collateral](../../core/core-space-basics/storage) is used as another resource other than gas for storing data required during transaction execution.
3232

3333
:::
3434

docs/general/conflux-basics/spaces.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,13 @@ In Conflux, eSpace transactions are only included in blocks if the block height
4646

4747
![spaces view from hardfork v2.4](./img/space.drawio.svg)
4848

49-
The graph above illustrates the relationship between the actual blocks in the ledger and the views from cSpace and eSpace. The text `H=..` indicates the block height.
49+
The graph above illustrates the relationship between the actual blocks in the ledger and the views from Core Space and eSpace. The text `H=..` indicates the block height.
5050

5151
#### Actual Blocks
5252

5353
In the Conflux ledger, blocks are organized as a Directed Acyclic Graph (DAG) and divided into epochs. For blocks whose height is a multiple of 5, eSpace transactions can be included, utilizing the isolated block space.
5454

55-
The parameter `block.gasLimit` represents the **expected** block size for overall Conflux blocks and is set to 60,000,000. This value can be retrieved using the [cfx_getBlockByHash](../../core/build/json-rpc/cfx-namespace.md) or similar RPC methods. The `cSpace.gasLimit` is set to 90% of `block.gasLimit` (54,000,000), while the `eSpace.gasLimit` is 50% of `block.gasLimit` (30,000,000).
55+
The parameter `block.gasLimit` represents the **expected** block size for overall Conflux blocks and is set to 60,000,000. This value can be retrieved using the [cfx_getBlockByHash](../../core/build/json-rpc/cfx-namespace.md) or similar RPC methods. The `coreSpace.gasLimit` is set to 90% of `block.gasLimit` (54,000,000), while the `eSpace.gasLimit` is 50% of `block.gasLimit` (30,000,000).
5656

5757
Consequently, for blocks whose height is a multiple of 5, their size can reach up to `1.4 * block.gasLimit`, while for those that are not, their maximum size is `0.9 * block.gasLimit`.
5858

@@ -62,7 +62,7 @@ Miners can adjust the block gas limit by 1% higher or lower for each block, but
6262

6363
:::
6464

65-
#### cSpace View
65+
#### Core Space View
6666

6767
From the Core perspective, the view is nearly the same as the actual block structure, except for the eSpace transactions. Blocks are organized as a DAG and divided into epochs, with each block having the same gas limit.
6868

0 commit comments

Comments
 (0)