Merge pull request #9490 from ethereum/renameSlotToSelector

Rename external function slot to selector.
This commit is contained in:
chriseth
2020-07-27 10:42:47 +02:00
committed by GitHub
2 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -3241,7 +3241,7 @@ vector<tuple<string, TypePointer>> FunctionType::makeStackItems() const
case Kind::DelegateCall:
slots = {
make_tuple("address", TypeProvider::address()),
make_tuple("functionIdentifier", TypeProvider::uint(32))
make_tuple("functionSelector", TypeProvider::uint(32))
};
break;
case Kind::BareCall: