Skip to content

Commit 4805cb4

Browse files
committed
fix: ss to ss_amount.
1 parent 9202d5c commit 4805cb4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/qt/blockbrowser.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ std::string getInputs(const std::string &txid)
275275
double amount = convertCoins(wtxPrev.vout[vin.prevout.n].nValue);
276276

277277
std::ostringstream ss_amount;
278-
ss << std::fixed << std::setprecision(4) << amount;
278+
ss_amount << std::fixed << std::setprecision(4) << amount;
279279

280280
str.append(addressSource.ToString());
281281
str.append(": ");

0 commit comments

Comments
 (0)