Skip to content

Commit

Permalink
Merge branch 'bridge-next-gen' into ron/transact-from-sub-to-eth
Browse files Browse the repository at this point in the history
  • Loading branch information
yrong committed Apr 24, 2024
2 parents 9019ab4 + 7f41605 commit 1fb852d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion contracts/test/Gateway.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,12 @@ contract GatewayTest is Test {
function setUp() public {
AgentExecutor executor = new AgentExecutor();
gatewayLogic = new MockGateway(
address(0), address(executor), bridgeHubParaID, bridgeHubAgentID, foreignTokenDecimals, maxDestinationFee
address(0),
address(executor),
bridgeHubParaID,
bridgeHubAgentID,
foreignTokenDecimals,
maxDestinationFee
);
Gateway.Config memory config = Gateway.Config({
mode: OperatingMode.Normal,
Expand Down
2 changes: 1 addition & 1 deletion contracts/test/mocks/MockGatewayV2.sol
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ library AdditionalStorage {
}

// Used to test upgrades.
contract MockGatewayV2 is IInitializable {
contract MockGatewayV2 is IInitializable {
// Reinitialize gateway with some additional storage fields
function initialize(bytes memory params) external {
AdditionalStorage.Layout storage $ = AdditionalStorage.layout();
Expand Down

0 comments on commit 1fb852d

Please sign in to comment.