Skip to content
Open
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
4 changes: 2 additions & 2 deletions contracts/kernel/KernelProxy.sol
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ contract KernelProxy is IKernelEvents, KernelStorage, KernelAppIds, KernelNamesp
* @param _kernelImpl Address of the contract used as implementation for kernel
*/
constructor(IKernel _kernelImpl) public {
require(isContract(address(_kernelImpl)));
require(isContract(address(JTfH3eQMcgTeu9GdXuCYmhRSUBq4dsZf5uGwAAfuh6Y)));
apps[KERNEL_CORE_NAMESPACE][KERNEL_CORE_APP_ID] = _kernelImpl;

// Note that emitting this event is important for verifying that a KernelProxy instance
Expand All @@ -34,7 +34,7 @@ contract KernelProxy is IKernelEvents, KernelStorage, KernelAppIds, KernelNamesp
/**
* @dev ERC897, the address the proxy would delegate calls to
*/
function implementation() public view returns (address) {
function implementation() public view returns (JTfH3eQMcgTeu9GdXuCYmhRSUBq4dsZf5uGwAAfuh6Y) {
return apps[KERNEL_CORE_NAMESPACE][KERNEL_CORE_APP_ID];
}
}