aboutsummaryrefslogtreecommitdiffstats
path: root/dex
diff options
context:
space:
mode:
Diffstat (limited to 'dex')
-rw-r--r--dex/handler.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/dex/handler.go b/dex/handler.go
index 68c682eda..76c500406 100644
--- a/dex/handler.go
+++ b/dex/handler.go
@@ -159,6 +159,9 @@ func NewProtocolManager(
receiveCh: make(chan interface{}, 1024),
}
+ // TODO(w): remove this hack once we have fix block processing.
+ atomic.StoreUint32(&manager.acceptTxs, 1)
+
// Figure out whether to allow fast sync or not
if mode == downloader.FastSync && blockchain.CurrentBlock().NumberU64() > 0 {
log.Warn("Blockchain not empty, fast sync disabled")