From 359267dd249a95d84f7cc2030f76df76c8d16f1d Mon Sep 17 00:00:00 2001 From: adu Date: Wed, 28 Aug 2024 16:25:21 +0800 Subject: [PATCH] fix: init OAppCoreUpgradeable for Bootstrap --- src/core/Bootstrap.sol | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/Bootstrap.sol b/src/core/Bootstrap.sol index 84e079dc..3afce2ad 100644 --- a/src/core/Bootstrap.sol +++ b/src/core/Bootstrap.sol @@ -89,6 +89,7 @@ contract Bootstrap is // set can not sign without the chain, the owner is likely to be an EOA or a // contract controlled by one. _transferOwnership(owner); + __OAppCore_init_unchained(owner); __Pausable_init_unchained(); __ReentrancyGuard_init_unchained(); }