This allows both tspend and treasury policies to be set by clients on a per-ticket basis. Preferences can be set when initially registering a ticket with `/payfee`, and can be later updated using `/setvotechoices`. Any requests which alter treasury/tspend policy will be stored in the database using the existing accountability system. **Note:** This does not include consistency checking, it will need to be added later when dcrwallet has an RPC to retrieve policies in batches.
28 lines
1.0 KiB
HTML
28 lines
1.0 KiB
HTML
{{ define "footer" }}
|
|
|
|
</div> <!-- page-content -->
|
|
|
|
<footer class="row m-0">
|
|
<div class="col-md-8 col-12 d-flex justify-content-center align-items-center">
|
|
<p class="py-4 m-0">
|
|
<strong>Stats updated:</strong> {{ .WebApiCache.UpdateTime }}
|
|
<br />
|
|
<strong>Support:</strong> <a href="mailto:{{ .WebApiCfg.SupportEmail }}" rel="noopener noreferrer">{{ .WebApiCfg.SupportEmail }}</a>
|
|
<br />
|
|
<strong>VSP public key:</strong> <span class="code">{{ .WebApiCache.PubKey }}</span>
|
|
</p>
|
|
</div>
|
|
|
|
<div class="col-md-4 col-12 footer__credit d-flex justify-content-center align-items-center">
|
|
<p class="py-4 m-0">
|
|
Decred Developers | 2020-2022
|
|
<br />
|
|
The source code is available on <a href="https://github.com/decred/vspd" target="_blank" rel="noopener noreferrer">GitHub</a>
|
|
</p>
|
|
</div>
|
|
</footer>
|
|
|
|
</body>
|
|
</html>
|
|
{{ end }}
|