mirror of
https://github.com/ditatompel/xmr-remote-nodes.git
synced 2025-04-09 21:16:28 +07:00
10 lines
254 B
Svelte
10 lines
254 B
Svelte
<script lang="ts">
|
|
export let estimate_fee: number;
|
|
export let majority_fee: number;
|
|
</script>
|
|
|
|
{#if estimate_fee !== majority_fee}
|
|
<span class="text-orange-800 dark:text-orange-300">{estimate_fee}<br />(CAUTION!)</span>
|
|
{:else}
|
|
{estimate_fee}
|
|
{/if}
|