diff --git a/libraries/wallet/wallet.cpp b/libraries/wallet/wallet.cpp index 5b5d6138..59a50829 100644 --- a/libraries/wallet/wallet.cpp +++ b/libraries/wallet/wallet.cpp @@ -2183,7 +2183,8 @@ public: //ss << n; if (abs( round( n ) - n ) < 0.00000000001 ) { - ss << setiosflags( !ios::fixed ) << (int) n; + //ss << setiosflags( !ios::fixed ) << (int) n; // doesn't compile on Linux with gcc + ss << (int) n; } else if (n - floor(n) < 0.000001) {