Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/AccountGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ The account is created successfully as shown below.

### Backup CESS account

Click the setting option on the right side of the account and click "export accout" to export the backup file.
Click the setting option on the right side of the account and click "export account" to export the backup file.

![Image](https://raw.githubusercontent.com/Cumulus2021/W3F-illustration/main/docs/account%20guide/img7.png)

Expand Down
4 changes: 2 additions & 2 deletions pallets/cacher/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ fn update_works() {
ip: IpAddress::IPV4([127, 0, 0, 1], 80),
byte_price: 200u32.into(),
};
// Wrong accout update fails.
// Wrong account update fails.

assert_noop!(
Cacher::update(RuntimeOrigin::signed(2), new_info.clone()),
Expand All @@ -66,7 +66,7 @@ fn logout_works() {
};
assert_ok!(Cacher::register(RuntimeOrigin::signed(1), info.clone()));

// Wrong accout logout fails.
// Wrong account logout fails.
assert_noop!(Cacher::logout(RuntimeOrigin::signed(2)), Error::<Test>::UnRegister);

// Logout works.
Expand Down