forked from masternodes/vps
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/phoreproject/vps
- Loading branch information
Showing
42 changed files
with
133 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
.DS_Store* | ||
.DS_Store* | ||
*.DS_Store* | ||
assets/collage.jpeg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/bash | ||
|
||
# monkey patching b/c ... | ||
cp ../../config/curium/secp256k1buildfix.patch src/ | ||
patch -p0 < src/secp256k1buildfix.patch | ||
# end monkey patching | ||
|
||
chmod u+x ./autogen.sh | ||
chmod u+x share/genbuild.sh | ||
./autogen.sh | ||
./configure --disable-dependency-tracking --enable-tests=no --without-miniupnpc --with-incompatible-bdb CFLAGS="-march=native" LIBS="-lcurl -lssl -lcrypto -lz" | ||
make | ||
make install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
CODENAME=curium | ||
MNODE_DAEMON=${MNODE_DAEMON:-/usr/local/bin/curiumd} | ||
MNODE_INBOUND_PORT=${MNODE_INBOUND_PORT:-12845} | ||
GIT_URL="https://github.com/mrmetech/Curium.git" | ||
SCVERSION="master" | ||
NETWORK_BASE_TAG="2009" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- src/secp256k1/old_Makefile.am 2018-01-04 18:37:35.116643051 +0000 | ||
+++ src/secp256k1/Makefile.am 2018-01-04 18:38:22.400697181 +0000 | ||
@@ -75,8 +75,9 @@ | ||
endif | ||
|
||
if USE_ECMULT_STATIC_PRECOMPUTATION | ||
-CPPFLAGS_FOR_BUILD +=-I$(top_srcdir) | ||
-CFLAGS_FOR_BUILD += -Wall -Wextra -Wno-unused-function | ||
+CPPFLAGS_FOR_BUILD = -I$(top_srcdir) | ||
+CFLAGS_FOR_BUILD = -Wall -Wextra -Wno-unused-function | ||
+CC_FOR_BUILD = g++ | ||
|
||
gen_context_OBJECTS = gen_context.o | ||
gen_context_BIN = gen_context$(BUILD_EXEEXT) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/bin/bash | ||
|
||
./autogen.sh | ||
./configure --disable-dependency-tracking --enable-tests=no --without-gui --without-miniupnpc --with-incompatible-bdb CFLAGS="-march=native" LIBS="-lcurl -lssl -lcrypto -lz" | ||
make | ||
make install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
CODENAME=node | ||
MNODE_DAEMON=${MNODE_DAEMON:-/usr/local/bin/bitnodesd} | ||
MNODE_INBOUND_PORT=${MNODE_INBOUND_PORT:-7227} | ||
GIT_URL=https://github.com/bitnodes/bitnodes.git | ||
SCVERSION="master" | ||
NETWORK_BASE_TAG="2002" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/bin/bash | ||
|
||
chmod u+x ./autogen.sh | ||
chmod u+x share/genbuild.sh | ||
./autogen.sh | ||
./configure --disable-dependency-tracking --enable-tests=no --without-gui --without-miniupnpc --with-incompatible-bdb CFLAGS="-march=native" LIBS="-lcurl -lssl -lcrypto -lz" | ||
make | ||
make install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
CODENAME=send | ||
MNODE_DAEMON=${MNODE_DAEMON:-/usr/local/bin/sendd} | ||
MNODE_INBOUND_PORT=${MNODE_INBOUND_PORT:-50050} | ||
GIT_URL=https://github.com/SocialSend/SocialSend.git | ||
SCVERSION="tags/1.0.0.7" | ||
NETWORK_BASE_TAG="2012" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/bin/bash | ||
|
||
chmod u+x autogen.sh | ||
chmod u+x share/genbuild.sh | ||
./autogen.sh | ||
./configure --disable-dependency-tracking --enable-tests=no --without-gui --without-miniupnpc --with-incompatible-bdb CFLAGS="-march=native" LIBS="-lcurl -lssl -lcrypto -lz" | ||
make | ||
make install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
CODENAME=sub1x | ||
MNODE_DAEMON=${MNODE_DAEMON:-/usr/local/bin/sub1xd} | ||
MNODE_INBOUND_PORT=${MNODE_INBOUND_PORT:-43172} | ||
GIT_URL=https://github.com/SuB1X-Coin/SuB1X.git | ||
SCVERSION="master" | ||
NETWORK_BASE_TAG="2009" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- src/old_rpcrawtransaction.cpp 2018-01-04 18:09:03.904497370 +0000 | ||
+++ src/rpcrawtransaction.cpp 2018-01-04 18:11:57.957359497 +0000 | ||
@@ -214,12 +214,7 @@ | ||
CTxDestination address; | ||
if (ExtractDestination(pk, address)) | ||
{ | ||
- #warning BOOST_VERSION | ||
- #if ((BOOST_VERSION / 10000 == 1) && (BOOST_VERSION / 100 % 1000 == 58)) | ||
const CScriptID& hash = boost::get<CScriptID>(address); | ||
- #else | ||
- const CScriptID& hash = boost::get<CScriptID&>(address); | ||
- #endif | ||
CScript redeemScript; | ||
if (pwalletMain->GetCScript(hash, redeemScript)) | ||
entry.push_back(Pair("redeemScript", HexStr(redeemScript.begin(), redeemScript.end()))); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
#!/bin/bash | ||
|
||
# monkey patching b/c synx ... | ||
cp ../../config/synx/rpcrawtxbuild.patch src/ | ||
patch -p0 < src/rpcrawtxbuild.patch | ||
# end monkey patching | ||
|
||
cd src | ||
make -f makefile.unix USE_UPNP=- | ||
cp Syndicated ${MNODE_DAEMON} | ||
cp Syndicated ${MNODE_DAEMON} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- src/secp256k1/old_Makefile.am 2018-01-04 18:37:35.116643051 +0000 | ||
+++ src/secp256k1/Makefile.am 2018-01-04 18:38:22.400697181 +0000 | ||
@@ -75,8 +75,9 @@ | ||
endif | ||
|
||
if USE_ECMULT_STATIC_PRECOMPUTATION | ||
-CPPFLAGS_FOR_BUILD +=-I$(top_srcdir) | ||
-CFLAGS_FOR_BUILD += -Wall -Wextra -Wno-unused-function | ||
+CPPFLAGS_FOR_BUILD = -I$(top_srcdir) | ||
+CFLAGS_FOR_BUILD = -Wall -Wextra -Wno-unused-function | ||
+CC_FOR_BUILD = g++ | ||
|
||
gen_context_OBJECTS = gen_context.o | ||
gen_context_BIN = gen_context$(BUILD_EXEEXT) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,13 @@ | ||
#!/bin/bash | ||
|
||
# monkey patching b/c vivo ... | ||
cp ../../config/vivo/secp256k1buildfix.patch src/ | ||
patch -p0 < src/secp256k1buildfix.patch | ||
# end monkey patching | ||
|
||
chmod u+x ./autogen.sh | ||
chmod u+x share/genbuild.sh | ||
./autogen.sh | ||
./configure --disable-dependency-tracking --enable-tests=no --without-gui --without-miniupnpc --with-incompatible-bdb CFLAGS="-march=native" LIBS="-lcurl -lssl -lcrypto -lz" | ||
make | ||
make install | ||
make install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters