mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Implement new with CREATE2 and function call options.
This commit is contained in:
committed by
chriseth
parent
679f729f2f
commit
a3f23d3158
@@ -459,7 +459,8 @@ FunctionType const* TypeProvider::function(
|
||||
Declaration const* _declaration,
|
||||
bool _gasSet,
|
||||
bool _valueSet,
|
||||
bool _bound
|
||||
bool _bound,
|
||||
bool _saltSet
|
||||
)
|
||||
{
|
||||
return createAndGet<FunctionType>(
|
||||
@@ -473,7 +474,8 @@ FunctionType const* TypeProvider::function(
|
||||
_declaration,
|
||||
_gasSet,
|
||||
_valueSet,
|
||||
_bound
|
||||
_bound,
|
||||
_saltSet
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user