Skip to content

Commit 631fa04

Browse files
committed
fix: markdown-checker results
1 parent 27c8c67 commit 631fa04

File tree

2 files changed

+3
-3
lines changed
  • public/content/translations/zh/developers/tutorials
    • erc20-with-safety-rails
    • how-to-mock-solidity-contracts-for-testing

2 files changed

+3
-3
lines changed

public/content/translations/zh/developers/tutorials/erc20-with-safety-rails/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ lang: zh
66
tags:
77
- "erc-20"
88
skill: beginner
9-
published: 2022年8月15日
9+
published: 2022-08-15
1010
---
1111

1212
## 简介 {#introduction}
@@ -141,7 +141,7 @@ OpenZeppelin 提供两种机制来实现管理访问:
141141

142142
冻结和解冻合约需要几处更改:
143143

144-
- [](https://www.tutorialspoint.com/solidity/solidity_mappings.htm)从地址到[布尔值](https://en.wikipedia.org/wiki/Boolean_data_type)的映射来追踪哪些地址被冻结。 所有值的初始值都是 0,对于布尔值来说,它被解释为“false”。 这正是我们想要的,因为默认情况下帐户不会被冻结。
144+
- 从地址到[布尔值](https://en.wikipedia.org/wiki/Boolean_data_type)[映射](https://www.tutorialspoint.com/solidity/solidity_mappings.htm)来追踪哪些地址被冻结。 所有值的初始值都是 0,对于布尔值来说,它被解释为“false”。 这正是我们想要的,因为默认情况下帐户不会被冻结。
145145

146146
```solidity
147147
mapping(address => bool) public frozenAccounts;

public/content/translations/zh/developers/tutorials/how-to-mock-solidity-contracts-for-testing/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ tags:
99
- "测试"
1010
- "模拟"
1111
skill: intermediate
12-
published: 2020年05月02日
12+
published: 2020-05-02
1313
source: soliditydeveloper.com
1414
sourceUrl: https://soliditydeveloper.com/mocking-contracts
1515
---

0 commit comments

Comments
 (0)