Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(BIDS-2841) Displaying amounts in the currency that the user selected #2770

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
Open
2 changes: 1 addition & 1 deletion local-deployment/network-params.json
thib-wien marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@
"start_tx_spammer": true,
"start_blob_spammer": false
}


8 changes: 6 additions & 2 deletions templates/slot/execTransactions.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
{{ define "execution_transactions" }}
{{ with .Data.ExecutionData }}
{{ $data := .Data }}
{{ if $data.ExecutionData }}
{{ $data = $data.ExecutionData}}
{{ end }}
{{ with $data }}
<style>
#transactions_table td {
max-width: 200px;
Expand Down Expand Up @@ -104,4 +108,4 @@
</script>
</div>
{{ end }}
{{ end }}
{{ end }}
Loading