Move signature verification functions to CPubKey.
[novacoin.git] / src / qt / multisigaddressentry.cpp
index 166b9ed..4b07e11 100644 (file)
@@ -108,7 +108,7 @@ void MultisigAddressEntry::on_address_textChanged(const QString &address)
     {
         CPubKey vchPubKey;
         model->getPubKey(keyID, vchPubKey);
-        std::string pubkey = HexStr(vchPubKey.Raw());
+        std::string pubkey = HexStr(vchPubKey.begin(), vchPubKey.end());
         if(!pubkey.empty())
             ui->pubkey->setText(pubkey.c_str());
     }