aboutsummaryrefslogtreecommitdiff
path: root/src/cryptonote_core/cryptonote_core.cpp
diff options
context:
space:
mode:
authorPierre Boyer <pierre.s.boyer@gmail.com>2016-12-04 14:13:54 +0100
committerPierre Boyer <pierre.s.boyer@gmail.com>2016-12-04 14:13:54 +0100
commitf4772bae812cdab9cca3864d79cdbec7abe5a114 (patch)
tree434455673de9c67c5ed71c4d37a936610012df56 /src/cryptonote_core/cryptonote_core.cpp
parentc36cb5434059ed53daf947b189343ac0bd8f31d8 (diff)
downloadmonzero-core-f4772bae812cdab9cca3864d79cdbec7abe5a114.tar.gz
monzero-core-f4772bae812cdab9cca3864d79cdbec7abe5a114.tar.xz
monzero-core-f4772bae812cdab9cca3864d79cdbec7abe5a114.zip
Fix a few minor typos
Diffstat (limited to 'src/cryptonote_core/cryptonote_core.cpp')
-rw-r--r--src/cryptonote_core/cryptonote_core.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cryptonote_core/cryptonote_core.cpp b/src/cryptonote_core/cryptonote_core.cpp
index 84a41cfbf..21ae498a9 100644
--- a/src/cryptonote_core/cryptonote_core.cpp
+++ b/src/cryptonote_core/cryptonote_core.cpp
@@ -315,7 +315,7 @@ namespace cryptonote
}
else
{
- LOG_ERROR("Attempted to use non-existant database type");
+ LOG_ERROR("Attempted to use non-existent database type");
return false;
}
@@ -716,7 +716,7 @@ namespace cryptonote
crypto::hash tx_hash, tx_prefix_hash;
if (!parse_and_validate_tx_from_blob(tx_blob, tx, tx_hash, tx_prefix_hash))
{
- LOG_ERROR("Failed to parse relayed tranasction");
+ LOG_ERROR("Failed to parse relayed transaction");
return;
}
txs.push_back(std::make_pair(tx_hash, std::move(tx)));