Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix links #6440

Merged
merged 2 commits into from
Jan 14, 2025
Merged
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 venus-shared/actors/types/docs.md
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` 的**循环引用问题**,所以把一些类型的定义放到了本包中。
Loading