Skip to content

Commit d51b597

Browse files
authored
Merge pull request #389 from findmyhappy/main
chore: fix some minor issues in the comments
2 parents 2b26383 + a35f58e commit d51b597

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

docs/learn/computation/debug-tracing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ To get traces with the debug API, you first need to decide what kind of informat
3434

3535
Kaia's `callTracer` output format is identical to go-ethereum except for following:
3636

37-
- For revered transactions, both fields are provided.
37+
- For reversed transactions, both fields are provided.
3838
- `result.revertReason`: revert reason string, if any.
3939
- `result.reverted.contract`: the address of the reverted contract.
4040
- `result.reverted.message`: same as revertReason

docs/learn/transaction-fees/transaction-fees.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ The baseFee calculation depends on following parameters:
6262
- UPPER_BOUND_BASE_FEE: The maximum value for the base fee
6363
- LOWER_BOUND_BASE_FEE: The minimum value for the base fee
6464

65-
Below is an oversimplified version of the baseFee calculation. In its essense, the base fee change is proportional to the difference between GAS_TARGET and PREVIOUS_BLOCK_GAS_USED, and other parameters controls the change speed or bounds the baseFee. Refer to [KIP-71](https://github.com/kaiachain/kips/blob/main/KIPs/kip-71.md) for the exact formula.
65+
Below is an oversimplified version of the baseFee calculation. In its essence, the base fee change is proportional to the difference between GAS_TARGET and PREVIOUS_BLOCK_GAS_USED, and other parameters controls the change speed or bounds the baseFee. Refer to [KIP-71](https://github.com/kaiachain/kips/blob/main/KIPs/kip-71.md) for the exact formula.
6666

6767
```
6868
min(PREVIOUS_BLOCK_GAS_USED, MAX_BLOCK_GAS_USED_FOR_BASE_FEE) - GAS_TARGET

docs/nodes/core-cell/install/install-consensus-nodes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ Keep in mind that the keystore and the password that you created is significantl
158158

159159
### (Optional) Download Chaindata Snapshot
160160

161-
Synching from the genesis block is time-consuming. You may use [Chaindata Snapshot](../../../misc/operation/chaindata-snapshot.md) to skip the [Full Sync](../../../learn/storage/block-sync.md#full-sync) process.
161+
Syncing from the genesis block is time-consuming. You may use [Chaindata Snapshot](../../../misc/operation/chaindata-snapshot.md) to skip the [Full Sync](../../../learn/storage/block-sync.md#full-sync) process.
162162

163163
## Startup the CN <a id="startup-the-cn"></a>
164164

docs/nodes/core-cell/install/install-proxy-nodes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ DATA_DIR=/var/kpnd/data
144144

145145
### (Optional) Download Chaindata Snapshot
146146

147-
Synching from the genesis block is time-consuming. You may use [Chaindata Snapshot](../../../misc/operation/chaindata-snapshot.md) to skip the [Full Sync](../../../learn/storage/block-sync.md#full-sync) process.
147+
Syncing from the genesis block is time-consuming. You may use [Chaindata Snapshot](../../../misc/operation/chaindata-snapshot.md) to skip the [Full Sync](../../../learn/storage/block-sync.md#full-sync) process.
148148

149149
## Startup the PN <a id="startup-the-pn"></a>
150150

docs/nodes/endpoint-node/docker-setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ echo "LOG_DIR=/var/kend/logs" >> conf/kend.conf
2727

2828
### (Optional) Download Chaindata Snapshot
2929

30-
Synching from the genesis block is time-consuming. You may use [Chaindata Snapshot](../../misc/operation/chaindata-snapshot.md) to skip the [Full Sync](../../learn/storage/block-sync.md#full-sync) process. Download and decompress the chaindata snapshot. Then mount the decompressed directory to the container.
30+
Syncing from the genesis block is time-consuming. You may use [Chaindata Snapshot](../../misc/operation/chaindata-snapshot.md) to skip the [Full Sync](../../learn/storage/block-sync.md#full-sync) process. Download and decompress the chaindata snapshot. Then mount the decompressed directory to the container.
3131

3232
## Start the container
3333

docs/nodes/endpoint-node/install-endpoint-nodes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ DATA_DIR=/var/kend/data
113113

114114
### (Optional) Download Chaindata Snapshot
115115

116-
Synching from the genesis block is time-consuming. You may use [Chaindata Snapshot](../../misc/operation/chaindata-snapshot.md) to skip the [Full Sync](../../learn/storage/block-sync.md#full-sync) process.
116+
Syncing from the genesis block is time-consuming. You may use [Chaindata Snapshot](../../misc/operation/chaindata-snapshot.md) to skip the [Full Sync](../../learn/storage/block-sync.md#full-sync) process.
117117

118118
## Startup the EN <a id="startup-the-en"></a>
119119

0 commit comments

Comments
 (0)