Skip to content
This repository has been archived by the owner on Sep 9, 2024. It is now read-only.

Fix typo in TECH.zh.md #128

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
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/TECH.zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ impl Address for BtcForkAddress {
```

#### Extra
因为对于每天链来说除了Account中定义的常见的address,cruve等必须属性,部分链还提供了额外信息,,例如bch还会包含enc_xpub和externalAddress等信息。有这部分需求的开发者可以实现Extra这个trait来扩展。例如Bch的实现如下:
因为对于每天链来说除了Account中定义的常见的address,curve等必须属性,部分链还提供了额外信息,,例如bch还会包含enc_xpub和externalAddress等信息。有这部分需求的开发者可以实现Extra这个trait来扩展。例如Bch的实现如下:
```rust
pub struct ExtendedPubKeyExtra {
pub enc_xpub: String,
Expand Down