From fcb829225ced5bbd5cadda816641ab169be20877 Mon Sep 17 00:00:00 2001 From: Brian W Bush Date: Thu, 11 Jan 2024 10:58:19 -0700 Subject: [PATCH] PLT-9086 Diagnosis. --- lessons/06-cip30/src/controller.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lessons/06-cip30/src/controller.js b/lessons/06-cip30/src/controller.js index 570eb01..ffaadbb 100644 --- a/lessons/06-cip30/src/controller.js +++ b/lessons/06-cip30/src/controller.js @@ -179,7 +179,7 @@ export async function createContract() { , tags : {} } , uiRuntime.value + "/contracts" - , "application/vendor.iog.marlowe-runtime.contract-tx-json" + , "application/json" , function(res) { uiReceiver.disabled = true uiAmount.disabled = true @@ -211,7 +211,7 @@ async function applyInputs(operation, inputs, followup) { , tags : {} } , contractUrl + "/transactions" - , "application/vendor.iog.marlowe-runtime.apply-inputs-tx-json" + , "application/json" , function(res) { transactionUrl = uiRuntime.value + "/" + res.links.transaction const tx = res.resource.transactionId @@ -286,7 +286,7 @@ function submitTransaction(cborHex, url, wait) { xhttp.open("PUT", url) xhttp.setRequestHeader("Content-Type", "application/json") const req = { - type : "ShelleyTxWitness BabbageEra" + type : "TxWitness Set BabbageEra" , description : "" , cborHex : witness }