diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,10 @@
 The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
 and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html)
 
+## 0.49.0
+### Changed
+- Improve conduit merging algorithm.
+
 ## 0.48.0
 ### Added
 - Timeouts and token bucket for web requests.
diff --git a/haskoin-store-data.cabal b/haskoin-store-data.cabal
--- a/haskoin-store-data.cabal
+++ b/haskoin-store-data.cabal
@@ -4,10 +4,10 @@
 --
 -- see: https://github.com/sol/hpack
 --
--- hash: 896ebdbda04fb65df2964dd33673cfe915511822e73e13d35ed460f5a3619ad7
+-- hash: 06763167c3dba87d18b701073a8f3a23b9c45c01d135a9a844f0f2e1f5a3a6cc
 
 name:           haskoin-store-data
-version:        0.48.0
+version:        0.49.0
 synopsis:       Data for Haskoin Store
 description:    Please see the README on GitHub at <https://github.com/haskoin/haskoin-store#readme>
 category:       Bitcoin, Finance, Network
diff --git a/src/Haskoin/Store/Data.hs b/src/Haskoin/Store/Data.hs
--- a/src/Haskoin/Store/Data.hs
+++ b/src/Haskoin/Store/Data.hs
@@ -2974,6 +2974,13 @@
         }
     deriving (Eq, Show, Generic, NFData)
 
+instance Ord BinfoXPubPath where
+    compare = compare `on` f
+       where
+         f b = ( xPubParent (getBinfoXPubPathKey b),
+                 getBinfoXPubPathDeriv b
+               )
+
 binfoXPubPathToJSON :: Network -> BinfoXPubPath -> Value
 binfoXPubPathToJSON net BinfoXPubPath {..} =
     A.object
