エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
Difference between require and assert and the difference between revert and throw
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Difference between require and assert and the difference between revert and throw
I was looking at the docs and I'm looking for clarification on the difference between require and... I was looking at the docs and I'm looking for clarification on the difference between require and assert and throw and revert. assert(bool condition): abort execution and revert state changes if condition is false (use for internal error) require(bool condition): abort execution and revert state changes if condition is false (use for malformed input) Specifically with respect to assert and require