エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
What's the difference between 'msg.sender' and 'tx.origin'?
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
What's the difference between 'msg.sender' and 'tx.origin'?
If either are used in the body of a Solidity function that may change the state of a contract (wr... If either are used in the body of a Solidity function that may change the state of a contract (write call), what's the primary difference and/or benefit of using one over the other. For example: function setOwner() { owner = msg.sender; } vs. function setOwner() { owner = tx.origin; } What's the difference?

