From 3ab33bafd7fdca3060d2fc9409b3c4a7fe4e33fc Mon Sep 17 00:00:00 2001 From: Josh Rickmar Date: Tue, 28 Jan 2014 16:21:53 -0500 Subject: [PATCH] Fix typo. --- disksync.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/disksync.go b/disksync.go index d78479d..202ed03 100644 --- a/disksync.go +++ b/disksync.go @@ -209,7 +209,7 @@ func (a *Account) writeDirtyToDisk() error { // UTXOs a.UtxoStore.RLock() - dirty := a.TxStore.dirty + dirty := a.UtxoStore.dirty a.UtxoStore.RUnlock() if dirty { netdir, filename := filepath.Split(utxofilepath)