From 8bd76eeff4d09dd2b0b6d9626601a09083983241 Mon Sep 17 00:00:00 2001 From: matthias zimmermann Date: Thu, 7 Jul 2022 13:19:28 +0200 Subject: [PATCH] amend previous commit --- contracts/modules/IBundle.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/modules/IBundle.sol b/contracts/modules/IBundle.sol index f680def..432440f 100644 --- a/contracts/modules/IBundle.sol +++ b/contracts/modules/IBundle.sol @@ -42,6 +42,6 @@ interface IBundle { function unlock(uint256 bundleId) external; function close(uint256 bundleId) external; - function collateralizePolicy(uint256 bundleId, bytes32 processId, uint256 amount) external; - function expirePolicy(uint256 bundleId, bytes32 processId) external; + function collateralizePolicy(uint256 bundleId, bytes32 processId, uint256 collateralAmount) external; + function expirePolicy(uint256 bundleId, bytes32 processId) external returns(uint256 collateralAmount); }