aboutsummaryrefslogtreecommitdiff
path: root/src/simplewallet
diff options
context:
space:
mode:
authorHoward Chu <hyc@symas.com>2017-11-14 20:35:30 +0000
committerHoward Chu <hyc@symas.com>2017-11-14 20:36:21 +0000
commit29cee4ec4fade9e7a60b18c6d1ba2984d624a2f0 (patch)
treea2c076b13eb186716ca86737d85ba8969940a023 /src/simplewallet
parentFix e89994e98f85be95d68c7bf471fcadf9aabbc93a (diff)
downloadmonero-29cee4ec4fade9e7a60b18c6d1ba2984d624a2f0.tar.xz
Fix 383ff4f68943c5d998fba8caa20aee481583f214
Missed a crypto::null_pkey in PR#2629
Diffstat (limited to 'src/simplewallet')
-rw-r--r--src/simplewallet/simplewallet.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp
index 699690ac3..abf2f2aef 100644
--- a/src/simplewallet/simplewallet.cpp
+++ b/src/simplewallet/simplewallet.cpp
@@ -3752,7 +3752,7 @@ bool simple_wallet::get_tx_proof(const std::vector<std::string> &args)
// fetch tx pubkey
crypto::public_key tx_pub_key = get_tx_pub_key_from_extra(tx);
- if (tx_pub_key == null_pkey)
+ if (tx_pub_key == crypto::null_pkey)
{
fail_msg_writer() << tr("Tx pubkey was not found");
return true;