Skip to content

Commit

Permalink
make fmt.
Browse files Browse the repository at this point in the history
  • Loading branch information
raulk committed Jan 2, 2025
1 parent 12088f8 commit 6cd5442
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions contracts/test/integration/MultiSubnet.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -124,14 +124,15 @@ contract MultiSubnetTest is Test, IntegrationTestBase {
SubnetID memory tokenSubnetName = SubnetID({root: ROOTNET_CHAINID, route: tokenSubnetPath});
GatewayDiamond tokenSubnetGateway = createGatewayDiamond(gatewayParams(tokenSubnetName));

return TestSubnetDefinition({
gateway: tokenSubnetGateway,
gatewayAddr: address(tokenSubnetGateway),
id: tokenSubnetName,
subnetActor: rootTokenSubnetActor,
subnetActorAddr: address(rootTokenSubnetActor),
path: tokenSubnetPath
});
return
TestSubnetDefinition({
gateway: tokenSubnetGateway,
gatewayAddr: address(tokenSubnetGateway),
id: tokenSubnetName,
subnetActor: rootTokenSubnetActor,
subnetActorAddr: address(rootTokenSubnetActor),
path: tokenSubnetPath
});
}

//--------------------
Expand Down

0 comments on commit 6cd5442

Please sign in to comment.