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

Commit 8e1096c

Browse files
committed
fix: contract change
1 parent 2a06055 commit 8e1096c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contracts/staking/validatorShare/ValidatorShareFactory.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ contract ValidatorShareFactory {
1010
function create(uint256 validatorId, address loggerAddress, address registry) public returns (address) {
1111
ValidatorShareProxy proxy = new ValidatorShareProxy(registry);
1212

13-
proxy.transferOwnership(msg.sender);
13+
proxy.transferProxyOwnership(msg.sender);
1414

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

0 commit comments

Comments
 (0)