diff options
author | Péter Szilágyi <peterke@gmail.com> | 2017-10-30 17:08:24 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-30 17:08:24 +0800 |
commit | dd8a62683e2007b1127bfdc55c58c39f78b58ebf (patch) | |
tree | 2cee788573cf551cb432c387f6be9412744ad853 /core | |
parent | 8d434f6a6f18c5172db9a8216d61cd50b746c964 (diff) | |
parent | 07e8c177e7f1cceadc70709946aa24777b4bf2af (diff) | |
download | dexon-dd8a62683e2007b1127bfdc55c58c39f78b58ebf.tar dexon-dd8a62683e2007b1127bfdc55c58c39f78b58ebf.tar.gz dexon-dd8a62683e2007b1127bfdc55c58c39f78b58ebf.tar.bz2 dexon-dd8a62683e2007b1127bfdc55c58c39f78b58ebf.tar.lz dexon-dd8a62683e2007b1127bfdc55c58c39f78b58ebf.tar.xz dexon-dd8a62683e2007b1127bfdc55c58c39f78b58ebf.tar.zst dexon-dd8a62683e2007b1127bfdc55c58c39f78b58ebf.zip |
Merge pull request #15398 from ferhatelmas/core-swarm-typo
core, swarm: typo fixes
Diffstat (limited to 'core')
-rw-r--r-- | core/tx_journal.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/tx_journal.go b/core/tx_journal.go index 3fd8ece49..e872d7b53 100644 --- a/core/tx_journal.go +++ b/core/tx_journal.go @@ -68,7 +68,7 @@ func (journal *txJournal) load(add func(*types.Transaction) error) error { } defer input.Close() - // Temporarilly discard any journal additions (don't double add on load) + // Temporarily discard any journal additions (don't double add on load) journal.writer = new(devNull) defer func() { journal.writer = nil }() |