Rename scrypt_mine.(cpp|h) to scrypt.(cpp|h)
authoralex <alex@alex-VirtualBox.(none)>
Fri, 23 Aug 2013 18:34:03 +0000 (22:34 +0400)
committeralex <alex@alex-VirtualBox.(none)>
Fri, 23 Aug 2013 18:34:03 +0000 (22:34 +0400)
novacoin-qt.pro
src/main.cpp
src/main.h
src/makefile.bsd
src/makefile.linux-mingw
src/makefile.mingw
src/makefile.osx
src/makefile.unix
src/scrypt.cpp [moved from src/scrypt_mine.cpp with 99% similarity]
src/scrypt.h [moved from src/scrypt_mine.h with 100% similarity]

index 5922e05..a9614e9 100644 (file)
@@ -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 += \
index 4b0caf8..77d5acd 100644 (file)
@@ -10,7 +10,6 @@
 #include "init.h"
 #include "ui_interface.h"
 #include "kernel.h"
-#include "scrypt_mine.h"
 #include <boost/algorithm/string/replace.hpp>
 #include <boost/filesystem.hpp>
 #include <boost/filesystem/fstream.hpp>
index 3711793..8b92292 100644 (file)
@@ -9,7 +9,7 @@
 #include "sync.h"
 #include "net.h"
 #include "script.h"
-#include "scrypt_mine.h"
+#include "scrypt.h"
 
 #include <list>
 
index eec1a3e..d493919 100644 (file)
@@ -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
 
index 2013486..466987a 100644 (file)
@@ -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
 
index 8b3311a..6d91c9d 100644 (file)
@@ -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
 
index a76f277..01c0085 100644 (file)
@@ -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
 
index c668788..4319769 100644 (file)
@@ -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
 
similarity index 99%
rename from src/scrypt_mine.cpp
rename to src/scrypt.cpp
index 6636097..7cc1b30 100644 (file)
@@ -30,7 +30,7 @@
 #include <stdlib.h>
 #include <stdint.h>
 
-#include "scrypt_mine.h"
+#include "scrypt.h"
 #include "pbkdf2.h"
 
 #include "util.h"
similarity index 100%
rename from src/scrypt_mine.h
rename to src/scrypt.h