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

Update errors.rst #21

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
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 contracts/errors.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Solidity 中的错误(关键字error)提供了一种方便且省gas的方式
错误产生的数据,会通过revert操作传递给调用者,可以交由链外组件处理或在 :ref:`try/catch 语句 <try-catch>` 中捕获它。
注意,只有外部调用的错误才能被捕获。发生在内部调用或同一函数内的 revert 不能被捕获。

如果错误没有任何参数,错误只需要四个字节的数据,你可以使用:ref:`NatSpec <natspec>`,来进一步解释错误背后的原因,NatSpec 不会存储在链上。
如果错误没有任何参数,错误只需要四个字节的数据,你可以使用 :ref:`NatSpec <natspec>` ,来进一步解释错误背后的原因,NatSpec 不会存储在链上。
这个方式使得它同时也是一个非常便宜和方便的错误报告功能。

更具体地说,一个错误实例的ABI编码方式与调用相同名称和类型的函数的方式相同,它作为 ``revert`` 操作码的返回数据使用。
Expand Down
1 change: 0 additions & 1 deletion contracts/inheritance.rst
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,6 @@ Solidity 支持多重继承包括多态。
}


。 解决此问题的方法是使用超级:

调用 ``Final.destroy()`` 时会调用 ``Base2.destroy``, 因为我们在最终重写中显式指定了它。
但是此函数将绕过 ``Base1.destroy``, 解决这个问题的方法是使用 ``super``:
Expand Down