diff options
author | ferhat elmas <elmas.ferhat@gmail.com> | 2017-10-30 08:23:23 +0800 |
---|---|---|
committer | ferhat elmas <elmas.ferhat@gmail.com> | 2017-10-30 08:23:23 +0800 |
commit | 07e8c177e7f1cceadc70709946aa24777b4bf2af (patch) | |
tree | 2cee788573cf551cb432c387f6be9412744ad853 /core | |
parent | 8d434f6a6f18c5172db9a8216d61cd50b746c964 (diff) | |
download | go-tangerine-07e8c177e7f1cceadc70709946aa24777b4bf2af.tar.gz go-tangerine-07e8c177e7f1cceadc70709946aa24777b4bf2af.tar.zst go-tangerine-07e8c177e7f1cceadc70709946aa24777b4bf2af.zip |
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 }() |