Code cleanup
[novacoin.git] / src / qt / multisiginputentry.cpp
index eb652f9..89653d2 100644 (file)
@@ -49,9 +49,9 @@ CTxIn MultisigInputEntry::getInput()
     return input;
 }
 
-int64 MultisigInputEntry::getAmount()
+int64_t MultisigInputEntry::getAmount()
 {
-    int64 amount = 0;
+    int64_t amount = 0;
     int nOutput = ui->transactionOutput->currentIndex();
     CTransaction tx;
     uint256 blockHash = 0;
@@ -120,7 +120,7 @@ void MultisigInputEntry::on_transactionId_textChanged(const QString &transaction
         QString idStr;
         idStr.setNum(i);
         const CTxOut& txOut = tx.vout[i];
-        int64 amount = txOut.nValue;
+        int64_t amount = txOut.nValue;
         QString amountStr;
         amountStr.sprintf("%.6f", (double) amount / COIN);
         CScript script = txOut.scriptPubKey;