mirror of
https://github.com/everoddandeven/monerod-gui.git
synced 2024-12-22 03:29:23 +00:00
Improve alert info
This commit is contained in:
parent
f2f112c81d
commit
ce1af24d55
3 changed files with 8 additions and 4 deletions
|
@ -477,7 +477,8 @@
|
|||
<h4 class="mb-3">Prune Blockchain</h4>
|
||||
<br>
|
||||
|
||||
<div class="alert alert-info d-flex text-center" role="alert">
|
||||
<div class="alert alert-info d-flex align-items-center justify-content-center text-center" role="alert">
|
||||
<h4><i class="bi bi-info-circle m-2"></i></h4>
|
||||
<div>
|
||||
<i>Pruning</i> allows node operators to save 2/3 of storage space while keeping the full transaction history
|
||||
</div>
|
||||
|
@ -508,7 +509,8 @@
|
|||
<h4 class="mb-3">Save the blockchain</h4>
|
||||
<br>
|
||||
|
||||
<div class="alert alert-info d-flex text-center" role="alert">
|
||||
<div class="alert alert-info d-flex align-items-center justify-content-center text-center" role="alert">
|
||||
<h4><i class="bi bi-info-circle m-2"></i></h4>
|
||||
<div>
|
||||
The blockchain does not need saving and is always saved when modified, however it does a sync to flush the filesystem cache onto the disk for safety purposes against Operating System or Hardware crashes.
|
||||
</div>
|
||||
|
|
|
@ -14,7 +14,8 @@
|
|||
<div *ngIf="daemonRunning && !daemonStopping" class="row d-flex justify-content-center">
|
||||
<h4 class="mb-3">Look up information regarding hard fork voting and readiness.</h4>
|
||||
|
||||
<div *ngIf="hardForkState !== ''" class="alert alert-info d-flex text-center" role="alert">
|
||||
<div *ngIf="hardForkState !== ''" class="alert alert-info d-flex align-items-center justify-content-center text-center" role="alert">
|
||||
<h4><i class="bi bi-info-circle m-2"></i></h4>
|
||||
<div>
|
||||
{{ hardForkState }}
|
||||
</div>
|
||||
|
|
|
@ -89,7 +89,8 @@
|
|||
<div class="tab-pane fade" id="pills-outputs-histogram" role="tabpanel" aria-labelledby="pills-outputs-histogram-tab" tabindex="0">
|
||||
<h4 class="mb-3">Get a histogram of output amounts</h4>
|
||||
|
||||
<div class="alert alert-info d-flex text-center" role="alert">
|
||||
<div class="alert alert-info d-flex align-items-center justify-content-center text-center" role="alert">
|
||||
<h4><i class="bi bi-info-circle m-2"></i></h4>
|
||||
<div>
|
||||
For all amounts (possibly filtered by parameters), gives the number of outputs on the chain for that amount. RingCT outputs counts as 0 amount.
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue