From 016a6c3a5bfeaa0066565a8994b0f765192cf14f Mon Sep 17 00:00:00 2001 From: Marc Doerflinger Date: Thu, 29 Aug 2024 14:43:18 +0000 Subject: [PATCH] optimize BundleInfo (#650) --- contracts/instance/module/IBundle.sol | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/contracts/instance/module/IBundle.sol b/contracts/instance/module/IBundle.sol index 6acf72d56..714e9342d 100644 --- a/contracts/instance/module/IBundle.sol +++ b/contracts/instance/module/IBundle.sol @@ -10,11 +10,11 @@ import {Timestamp} from "../../type/Timestamp.sol"; interface IBundle { struct BundleInfo { - NftId poolNftId; - Fee fee; // bundle fee on net premium amounts - bytes filter; // required conditions for applications to be considered for collateralization by this bundle Timestamp activatedAt; Timestamp expiredAt; // no new policies starting with this timestamp Timestamp closedAt; // no open policies, locked amount = 0 + NftId poolNftId; + Fee fee; // bundle fee on net premium amounts + bytes filter; // required conditions for applications to be considered for collateralization by this bundle } } \ No newline at end of file