Skip to content

Commit

Permalink
let IProductService.underwrite return if underwriting was successful
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiaszimmermann committed Jul 10, 2022
1 parent f74f0b3 commit 65bac9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/services/IProductService.sol
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ interface IProductService {
bytes calldata applicationData
) external;

function underwrite(bytes32 processId) external returns (bool success);
function decline(bytes32 processId) external;
function underwrite(bytes32 processId) external;
function expire(bytes32 processId) external;

function newClaim(
Expand Down

0 comments on commit 65bac9e

Please sign in to comment.