diff --git a/src/main/java/com/sparrowwallet/sparrow/io/WalletTransactions.java b/src/main/java/com/sparrowwallet/sparrow/io/WalletTransactions.java index 4ab1fb3a..9869afb1 100644 --- a/src/main/java/com/sparrowwallet/sparrow/io/WalletTransactions.java +++ b/src/main/java/com/sparrowwallet/sparrow/io/WalletTransactions.java @@ -96,6 +96,12 @@ public class WalletTransactions implements WalletExport { writer.write(txEntry.getBlockTransaction().getHash().toString()); writer.endRecord(); } + + if(fiatCurrency != null) { + writer.endRecord(); + writer.writeComment(" Historical " + fiatCurrency.getCurrencyCode() + " values are taken from daily rates and should only be considered as approximate."); + } + writer.close(); } catch(IOException e) { throw new ExportException("Error writing transactions CSV", e);