commit 9002a7ceecb8aa000d6fc886e9b328e8d983a2e8 parent 5f80d48f4a627eb9f95b414a8ddb903df3c2bdc9 Author: ms <ms@taler.net> Date: Sun, 19 Sep 2021 14:53:33 +0200 match API Diffstat:
| M | sandbox/src/main/kotlin/tech/libeufin/sandbox/JSON.kt | | | 2 | +- |
| M | sandbox/src/main/kotlin/tech/libeufin/sandbox/Main.kt | | | 2 | -- |
2 files changed, 1 insertion(+), 3 deletions(-)
diff --git a/sandbox/src/main/kotlin/tech/libeufin/sandbox/JSON.kt b/sandbox/src/main/kotlin/tech/libeufin/sandbox/JSON.kt @@ -84,5 +84,5 @@ data class TalerWithdrawalStatus( data class TalerWithdrawalConfirmation( val reserve_pub: String, - val exchange_wire_details: String? + val selected_exchange: String? ) diff --git a/sandbox/src/main/kotlin/tech/libeufin/sandbox/Main.kt b/sandbox/src/main/kotlin/tech/libeufin/sandbox/Main.kt @@ -1040,8 +1040,6 @@ fun serverMain(dbName: String, port: Int) { post("/api/withdrawal-operation/{wopid}") { val wopid: String = ensureNonNull(call.parameters["wopid"]) logger.debug("Confirming withdraw operation: $wopid") - val debug = call.receiveText() - logger.debug("Withdraw confirmation request: $debug") val body = call.receiveJson<TalerWithdrawalConfirmation>() logger.debug("Withdrawal confirmation valid.") transaction {