エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
How could msg.sender != tx.origin AND extcodesize(caller) == 0 be true?
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
How could msg.sender != tx.origin AND extcodesize(caller) == 0 be true?
I'm working on a puzzle where msg.sender != tx.origin, so the implication is that the caller need... I'm working on a puzzle where msg.sender != tx.origin, so the implication is that the caller needs to be a contract or at least something in between the calling account. But extcodesize(caller) == 0 also needs to be true. So the caller needs to be an address or externally owned account. How can both of these be true? Can the caller's codesize ever be 0 if not an address/EOA?

