From e9cd9c96bcf187b9232299c5c1d5aece83bd4a33 Mon Sep 17 00:00:00 2001 From: Joey Zhou Date: Wed, 25 Jun 2014 10:35:07 -0700 Subject: [PATCH] line end --- eth/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eth/main.cpp b/eth/main.cpp index 7d317b7b2..9fffc8def 100644 --- a/eth/main.cpp +++ b/eth/main.cpp @@ -478,7 +478,7 @@ int main(int argc, char** argv) if (st.addressHasCode(r)) { ss = toString(r) + " : " + toString(formatBalance(i.second)) + " [" + toString((unsigned)st.transactionsFrom(i.first)) + "]"; - cout << ss; + cout << ss << endl; } } } @@ -494,7 +494,7 @@ int main(int argc, char** argv) if (!st.addressHasCode(r)) { ss = toString(r) + pretty(r, st) + " : " + toString(formatBalance(i.second)) + " [" + toString((unsigned)st.transactionsFrom(i.first)) + "]"; - cout << ss; + cout << ss << endl; } }