Skip to content
This repository has been archived by the owner on Sep 27, 2023. It is now read-only.

Fix issue 3.9: BaseRegistrarImplementation.acceptRegistrarTransfer sh… #19

Merged
merged 1 commit into from
Mar 12, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion contracts/BaseRegistrarImplementation.sol
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ contract BaseRegistrarImplementation is BaseRegistrar {
* @dev Transfers a registration from the initial registrar.
* This function is called by the initial registrar when a user calls `transferRegistrars`.
*/
function acceptRegistrarTransfer(bytes32 label, Deed deed, uint) external {
function acceptRegistrarTransfer(bytes32 label, Deed deed, uint) external live {
uint256 id = uint256(label);

require(msg.sender == address(previousRegistrar));
Expand Down