aboutsummaryrefslogtreecommitdiff
path: root/cmd/hlang/http.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/hlang/http.go')
-rw-r--r--cmd/hlang/http.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/cmd/hlang/http.go b/cmd/hlang/http.go
index 4a7f9df..2dc61b6 100644
--- a/cmd/hlang/http.go
+++ b/cmd/hlang/http.go
@@ -384,7 +384,6 @@ const playgroundTemplate = `<html>
const programData = document.getElementById("program").value;
const output = document.getElementById("output");
const astBox = document.getElementById("ast_box");
- const gasUsed = document.getElementById("gas_used");
const execTime = document.getElementById("exec_time");
const status = document.getElementById("status");
@@ -400,7 +399,6 @@ const playgroundTemplate = `<html>
status.innerHTML = "success";
astBox.innerHTML = data.prog.ast;
output.innerHTML = data.res.out;
- gasUsed.innerHTML = data.res.gas;
execTime.innerHTML = data.res.exec_duration;
})
.catch(function(error) {