Skip to content
This repository was archived by the owner on Nov 13, 2024. It is now read-only.

Commit e007756

Browse files
authored
minor fixes (#1312)
* minor fixes * fix issue
1 parent 91742f1 commit e007756

File tree

4 files changed

+3
-5
lines changed

4 files changed

+3
-5
lines changed

docs/en-us/basic/concept/wallets.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Address is a string of numbers and letters after a series of transformations of
6767
1. Build a `CheckSig` script with the public key, and the format is as follows:
6868

6969
```
70-
0x0C + 0x21 + 公钥(压缩型 33字节) + 0x41 + 0x56e7b327
70+
0x0C + 0x21 + Public Key (Compressed 33 bytes) + 0x41 + 0x56e7b327
7171
```
7272
7373
![](..\images\wallets\account_address_script_checksign.png)
@@ -92,7 +92,7 @@ Example:
9292
1. Construct an N-of-M `CheckMultiSig` script with multiple addresses. The script format is as follows:
9393
9494
```
95-
emitPush(N) + 0x0C + 0x21 + 公钥1(压缩型 33字节) + .... + 0x0C + 0x21 + 公钥m(压缩型 33字节) + emitPush(M) + 0x41 + 0x9ed0dc3a
95+
emitPush(N) + 0x0C + 0x21 + Public Key 1 (Compressed 33 bytes) + .... + 0x0C + 0x21 + Public Key m (Compressed 33 bytes) + emitPush(M) + 0x41 + 0x9ed0dc3a
9696
```
9797
9898
![](..\images\wallets\account_address_script_multi_checksign.png)
@@ -365,7 +365,7 @@ Neo-CLI and Neo-GUI are all full-node wallet. For more information refer to [Neo
365365

366366
### SPV wallet
367367

368-
The SPV (Simplified Payment Verification) wallet is different from full-node wallet. It dosen't store all block data, only block header data, and verifies the data by using bloom filter and merkle tree algorithm. It's mostly used in mobile app or light client, as it can save storage space effectively.
368+
The SPV (Simplified Payment Verification) wallet is different from full-node wallet. It doesn't store all block data, only block header data, and verifies the data by using bloom filter and merkle tree algorithm. It's mostly used in mobile app or light client, as it can save storage space effectively.
369369

370370
For developing SPV wallet, refer to the NEO network protocol interface.
371371

docs/en-us/gettingstarted/develop.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,6 @@ Run the following command to build your contract:
9393
dotnet build
9494
```
9595

96-
![](../../zh-cn/gettingstarted/assets/build.png)
97-
9896
Related contract files are outputted under `bin\sc` path in the contract project directory.
9997

10098
## See also
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)