initialize GiftBucket in Proxy constructor
This commit is contained in:
parent
7d19a6f98e
commit
ac2b2ca61e
|
@ -13,13 +13,9 @@ contract GiftBucketFactory {
|
||||||
}
|
}
|
||||||
|
|
||||||
function create(address _tokenAddress, uint256 _expirationTime) public returns (address) {
|
function create(address _tokenAddress, uint256 _expirationTime) public returns (address) {
|
||||||
address p = address(new Proxy("", address(GiftBucketImplementation)));
|
// initialize(address,uint256,address)
|
||||||
|
address p = address(new Proxy(abi.encodeWithSelector(0xc350a1b5, _tokenAddress, _expirationTime, msg.sender), address(GiftBucketImplementation)));
|
||||||
GiftBucket g = GiftBucket(p);
|
emit Created(msg.sender, p);
|
||||||
g.initialize(_tokenAddress, _expirationTime, msg.sender);
|
return p;
|
||||||
|
|
||||||
emit Created(msg.sender, address(p));
|
|
||||||
|
|
||||||
return address(p);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue