-
Notifications
You must be signed in to change notification settings - Fork 175
Purity checker does not filter STATICCALL opcode #170
Comments
Looks like this can be better handled by adding |
Actually I was wrong when I said "blacklist". It actually needs to be treated like other |
Here's a thought... blacklist EDIT: I retract this statement. I don't see a good reason to blacklist |
looks like it's handled here https://github.com/ethereum/casper/pull/169/files#diff-33d26a5c0d90fb3b88e7aed738a11fc5R71 Where
|
Where exactly? I don't see |
ah sorry, I mean |
Oh, sorry I think I misunderstood! Yes, I think |
As defined in EIP214, the
STATICCALL
opcode allows a contract to read the mutable state of another contract.The purity checker does not blacklist this opcode. I think it should.
EDIT:
STATICCALL
should not be blacklisted - instead filtered so that it may only be used upon pre-approved addresses.The text was updated successfully, but these errors were encountered: