Skip to content
This repository has been archived by the owner on Mar 1, 2024. It is now read-only.

Commit

Permalink
fix: contract change
Browse files Browse the repository at this point in the history
  • Loading branch information
AyushKaul committed Jul 27, 2020
1 parent 2a06055 commit 8e1096c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/staking/validatorShare/ValidatorShareFactory.sol
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ contract ValidatorShareFactory {
function create(uint256 validatorId, address loggerAddress, address registry) public returns (address) {
ValidatorShareProxy proxy = new ValidatorShareProxy(registry);

proxy.transferOwnership(msg.sender);
proxy.transferProxyOwnership(msg.sender);

address proxyAddr = address(proxy);
(bool success, bytes memory data) = proxyAddr.call.gas(gasleft())(
Expand Down

0 comments on commit 8e1096c

Please sign in to comment.