From: alex Date: Fri, 23 Aug 2013 18:34:03 +0000 (+0400) Subject: Rename scrypt_mine.(cpp|h) to scrypt.(cpp|h) X-Git-Tag: v0.4.4.3~2 X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=commitdiff_plain;h=2cf54c4aefe0d5181db922a6d8ebf229e3e4d251 Rename scrypt_mine.(cpp|h) to scrypt.(cpp|h) --- diff --git a/novacoin-qt.pro b/novacoin-qt.pro index 5922e05..a9614e9 100644 --- a/novacoin-qt.pro +++ b/novacoin-qt.pro @@ -127,7 +127,7 @@ HEADERS += src/qt/bitcoingui.h \ src/util.h \ src/uint256.h \ src/kernel.h \ - src/scrypt_mine.h \ + src/scrypt.h \ src/pbkdf2.h \ src/serialize.h \ src/strlcpy.h \ @@ -244,7 +244,7 @@ SOURCES += src/qt/bitcoin.cpp src/qt/bitcoingui.cpp \ src/kernel.cpp \ src/scrypt-x86.S \ src/scrypt-x86_64.S \ - src/scrypt_mine.cpp \ + src/scrypt.cpp \ src/pbkdf2.cpp RESOURCES += \ diff --git a/src/main.cpp b/src/main.cpp index 4b0caf8..77d5acd 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -10,7 +10,6 @@ #include "init.h" #include "ui_interface.h" #include "kernel.h" -#include "scrypt_mine.h" #include #include #include diff --git a/src/main.h b/src/main.h index 3711793..8b92292 100644 --- a/src/main.h +++ b/src/main.h @@ -9,7 +9,7 @@ #include "sync.h" #include "net.h" #include "script.h" -#include "scrypt_mine.h" +#include "scrypt.h" #include diff --git a/src/makefile.bsd b/src/makefile.bsd index eec1a3e..d493919 100644 --- a/src/makefile.bsd +++ b/src/makefile.bsd @@ -131,7 +131,7 @@ OBJS= \ obj/noui.o \ obj/kernel.o \ obj/pbkdf2.o \ - obj/scrypt_mine.o \ + obj/scrypt.o \ obj/scrypt-x86.o \ obj/scrypt-x86_64.o diff --git a/src/makefile.linux-mingw b/src/makefile.linux-mingw index 2013486..466987a 100644 --- a/src/makefile.linux-mingw +++ b/src/makefile.linux-mingw @@ -85,7 +85,7 @@ OBJS= \ obj/noui.o \ obj/kernel.o \ obj/pbkdf2.o \ - obj/scrypt_mine.o \ + obj/scrypt.o \ obj/scrypt-x86.o \ obj/scrypt-x86_64.o diff --git a/src/makefile.mingw b/src/makefile.mingw index 8b3311a..6d91c9d 100644 --- a/src/makefile.mingw +++ b/src/makefile.mingw @@ -81,7 +81,7 @@ OBJS= \ obj/noui.o \ obj/kernel.o \ obj/pbkdf2.o \ - obj/scrypt_mine.o \ + obj/scrypt.o \ obj/scrypt-x86.o \ obj/scrypt-x86_64.o diff --git a/src/makefile.osx b/src/makefile.osx index a76f277..01c0085 100644 --- a/src/makefile.osx +++ b/src/makefile.osx @@ -99,7 +99,7 @@ OBJS= \ obj/noui.o \ obj/pbkdf2.o \ obj/kernel.o \ - obj/scrypt_mine.o \ + obj/scrypt.o \ obj/scrypt-x86.o \ obj/scrypt-x86_64.o diff --git a/src/makefile.unix b/src/makefile.unix index c668788..4319769 100644 --- a/src/makefile.unix +++ b/src/makefile.unix @@ -130,7 +130,7 @@ OBJS= \ obj/noui.o \ obj/kernel.o \ obj/pbkdf2.o \ - obj/scrypt_mine.o \ + obj/scrypt.o \ obj/scrypt-x86.o \ obj/scrypt-x86_64.o diff --git a/src/scrypt_mine.cpp b/src/scrypt.cpp similarity index 99% rename from src/scrypt_mine.cpp rename to src/scrypt.cpp index 6636097..7cc1b30 100644 --- a/src/scrypt_mine.cpp +++ b/src/scrypt.cpp @@ -30,7 +30,7 @@ #include #include -#include "scrypt_mine.h" +#include "scrypt.h" #include "pbkdf2.h" #include "util.h" diff --git a/src/scrypt_mine.h b/src/scrypt.h similarity index 100% rename from src/scrypt_mine.h rename to src/scrypt.h