Lower min locktime to 1 hour for easier testing.

Fix blocks confirmed count.
This commit is contained in:
tecnovert
2020-12-11 14:08:32 +02:00
parent 7bb2cd7d1e
commit cb27fb6c4c
6 changed files with 14 additions and 8 deletions

View File

@@ -48,7 +48,7 @@
{% if data.was_received == 'True' %}
<input name="accept_bid" type="submit" value="Accept Bid"><br/>
{% endif %}
<input name="abandon_bid" type="submit" value="Abandon Bid">
<input name="abandon_bid" type="submit" value="Abandon Bid" onclick="confirmPopup()">
{% if data.show_txns %}
<input name="hide_txns" type="submit" value="Hide Info">
{% else %}
@@ -77,4 +77,9 @@
</table>
<p><a href="/">home</a></p>
<script>
function confirmPopup() {
confirm("Are you sure?");
}
</script>
</body></html>