Skip to content

Commit 8d0b905

Browse files
authored
Remove /broker/orders/match endpoint, matchOrders must be done through the Market API (#131)
1 parent 830723f commit 8d0b905

File tree

4 files changed

+2
-137
lines changed

4 files changed

+2
-137
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@ All notable changes to this project will be documented in this file.
44

55
## [[NEXT]](https://github.com/iExecBlockchainComputing/iexec-blockchain-adapter-api/releases/tag/vNEXT) 2024
66

7-
### Bug Fixes
7+
### Quality
88

99
- Remove `/tasks/{chainTaskId}` endpoint, the adapter must only call `initialize` and `finalize` **PoCo** methods. (#130)
10+
- Remove `/broker/orders/match` endpoint, `matchOrders` must be done through the **Market API**. (#131)
1011

1112
## [[8.3.0]](https://github.com/iExecBlockchainComputing/iexec-blockchain-adapter-api/releases/tag/v8.3.0) 2024-01-10
1213

iexec-blockchain-adapter-api-library/src/main/java/com/iexec/blockchain/api/BlockchainAdapterApiClient.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818

1919
import com.iexec.common.chain.adapter.args.TaskFinalizeArgs;
2020
import com.iexec.common.config.PublicChainConfig;
21-
import com.iexec.common.sdk.broker.BrokerOrder;
2221
import feign.Param;
2322
import feign.RequestLine;
2423

@@ -33,10 +32,6 @@
3332
*/
3433
public interface BlockchainAdapterApiClient {
3534

36-
// region authenticated APIs
37-
@RequestLine("POST /broker/orders/match")
38-
String matchOrders(BrokerOrder brokerOrder);
39-
4035
@RequestLine("GET /metrics")
4136
String getMetrics();
4237

src/main/java/com/iexec/blockchain/broker/BrokerController.java

Lines changed: 0 additions & 52 deletions
This file was deleted.

src/test/java/com/iexec/blockchain/broker/BrokerControllerTests.java

Lines changed: 0 additions & 79 deletions
This file was deleted.

0 commit comments

Comments
 (0)