From 7ab026f4493b145f2255d816864cb1a3486e0788 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Thu, 10 Jan 2013 13:16:00 -0500 Subject: Add MurmurHash3 implementation to hash.h/add hash.cpp. --- src/makefile.linux-mingw | 1 + 1 file changed, 1 insertion(+) (limited to 'src/makefile.linux-mingw') diff --git a/src/makefile.linux-mingw b/src/makefile.linux-mingw index 47dc7c5c4..95e7e83cd 100644 --- a/src/makefile.linux-mingw +++ b/src/makefile.linux-mingw @@ -83,6 +83,7 @@ OBJS= \ obj/wallet.o \ obj/walletdb.o \ obj/noui.o \ + obj/hash.o \ obj/leveldb.o \ obj/txdb.o -- cgit v1.2.3 From bd21612c37cf4f2df3a6926beff8a7f89714235e Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Mon, 13 Aug 2012 05:26:27 +0200 Subject: Add a CBloomFilter class for use as a transaction filter. --- src/makefile.linux-mingw | 1 + 1 file changed, 1 insertion(+) (limited to 'src/makefile.linux-mingw') diff --git a/src/makefile.linux-mingw b/src/makefile.linux-mingw index 95e7e83cd..ff565f2a2 100644 --- a/src/makefile.linux-mingw +++ b/src/makefile.linux-mingw @@ -84,6 +84,7 @@ OBJS= \ obj/walletdb.o \ obj/noui.o \ obj/hash.o \ + obj/bloom.o \ obj/leveldb.o \ obj/txdb.o -- cgit v1.2.3