Skip to content

Commit a0fb5d7

Browse files
authored
Merge pull request #74 from IamLupo/master
fix: ss to ss_amount
2 parents fe40f3e + 4ec0f99 commit a0fb5d7

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)