From 2ac6c0b2deecd8060ae326301bf625d64115cc09 Mon Sep 17 00:00:00 2001 From: Eric Mastro Date: Tue, 25 Oct 2022 13:13:31 +1100 Subject: [PATCH] remove duplicate _toProofId function --- contracts/Marketplace.sol | 4 ---- 1 file changed, 4 deletions(-) diff --git a/contracts/Marketplace.sol b/contracts/Marketplace.sol index 1feba96..883ec12 100644 --- a/contracts/Marketplace.sol +++ b/contracts/Marketplace.sol @@ -370,10 +370,6 @@ contract Marketplace is Collateral, Proofs { return RequestId.unwrap(a) != bytes32(b); } - function _toProofId(SlotId slotId) internal pure returns (ProofId) { - return ProofId.wrap(SlotId.unwrap(slotId)); - } - struct Request { address client; Ask ask;