-
Notifications
You must be signed in to change notification settings - Fork 467
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6440 from wmjae/fix-link
fix links
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
[`venus/venus-shared/actors/builtin/multisig/message.v0.go`](#https://github.com/filecoin-project/venus/blob/master/venus-shared/actors/builtin/multisig/message.v0.go#L27) 需要引用结构体 `Message` 和 [`venus/venus-shared/actors/builtin/init/actor.go`](#https://github.com/filecoin-project/venus/blob/master/venus-shared/actors/builtin/init/actor.go#L41) 需要引用结构体 `Actor`,若把 `Message` 和 `Actor` 定义在 `venus/venus-shared/types` 包中,会导致 `venus/venus-shared/actors` 和 `venus/venus-shared/types` 的**循环引用问题**,所以把一些类型的定义放到了本包中。 | ||
[`venus/venus-shared/actors/builtin/multisig/message.v0.go`](https://github.com/filecoin-project/venus/blob/master/venus-shared/actors/builtin/multisig/message.v0.go#L27) 需要引用结构体 `Message` 和 [`venus/venus-shared/actors/builtin/init/actor.go`](https://github.com/filecoin-project/venus/blob/master/venus-shared/actors/builtin/init/actor.go#L43) 需要引用结构体 `Actor`,若把 `Message` 和 `Actor` 定义在 `venus/venus-shared/types` 包中,会导致 `venus/venus-shared/actors` 和 `venus/venus-shared/types` 的**循环引用问题**,所以把一些类型的定义放到了本包中。 |