diff --git a/silkaj/tx.py b/silkaj/tx.py
index 7476821585f17f3e068d5b2185ea779516d9e05d..24cf2cdaa99f7eea8eaad1e26d214eb7793ff185 100644
--- a/silkaj/tx.py
+++ b/silkaj/tx.py
@@ -31,6 +31,7 @@ from silkaj.constants import (
     SOURCES_PER_TX,
     MINIMAL_TX_AMOUNT,
     CENT_MULT_TO_UNIT,
+    ASYNC_SLEEP,
 )
 from silkaj.tui import display_amount, display_pubkey
 
@@ -236,6 +237,7 @@ async def transaction_confirmation(
     # display outputs and amounts
     for outputAddress, tx_amount in zip(outputAddresses, tx_amounts):
         await display_pubkey(tx, "to", outputAddress)
+        await sleep(ASYNC_SLEEP)
         display_amount(tx, "amount", tx_amount, ud_value, currency_symbol)
     # display last informations
     if outputBackChange: