Bitcoin Forum
July 03, 2024, 08:30:51 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Bitcoin / Project Development / Re: DicePalace.com ® | Crowdfunded Bitcoin Dice Project | Licensed casino (soon) on: November 29, 2016, 01:04:29 PM
FEATURES:
-Registred gambling license from CostaRica (coming soon)
-100% Anonymous playing
How this two will work together i mean if you have to run your casino under gambling license you also have to have proper record of your players so how you gonna allow your players to play anonymously?

All other features you have listed are in almost every bitcoin casino these days and also 1% houseedge is in most of them. However good luck better you will have probably fair and highly secure platform.

TurboBet option = ≈300 bets per second
Are you sure your server gonna handle turbo/auto bet on this speed ? 300 bets per second sound too high to be handled.
I currently have 600-660 bets per core, running on 32 core means 19200 bets per second assuming the raid 0 SSD's keep it up and yes with invest option(s).

No it's possible.
Now time to actually finish it after 5 month break hmm.
2  Alternate cryptocurrencies / Altcoin Discussion / Re: compiling altcoins: libdb4.8 vs libdb5.1 on: March 01, 2016, 08:01:20 PM
ah okay thank you.. i think the Flags are hardcoded in the setup files.. ( Worldcoin: -O2 ), i don't thnik we should change much here..

To make my attempts clearer: Some coins are created via "./autogen.sh", some are created via "./src/make".. this is the choise of the developer, not mine.. i can now install the former ones:

Code:
cd /home/user/libdb
BITCOIN_ROOT=$(pwd)
BDB_PREFIX="${BITCOIN_ROOT}/db4"
mkdir -p $BDB_PREFIX
wget 'http://download.oracle.com/berkeley-db/db-4.8.30.NC.tar.gz'
tar -xzvf db-4.8.30.NC.tar.gz
cd db-4.8.30.NC/build_unix/
../dist/configure --enable-cxx --disable-shared --with-pic --prefix=$BDB_PREFIX
make install

cd /home/user/libdb
BITCOIN_ROOT=$(pwd)
BDB_PREFIX="${BITCOIN_ROOT}/db5"
mkdir -p $BDB_PREFIX
wget 'http://download.oracle.com/berkeley-db/db-5.1.29.NC.tar.gz'
tar -xzvf db-5.1.29.NC.tar.gz
cd db-5.1.29.NC/build_unix/
../dist/configure --enable-cxx --disable-shared --with-pic --prefix=$BDB_PREFIX
make install

cd ~
echo 'cd ~
rm litecoin -rR
git clone https://github.com/litecoin-project/litecoin
cd litecoin
git pull
git checkout master
 cd src
mkdir obj
cd ..
./autogen.sh
BDB_PREFIX="/home/user/libdb/db4"
./configure LDFLAGS="-L${BDB_PREFIX}/lib/" CPPFLAGS="-I${BDB_PREFIX}/include/" --with-gui=no
make
cd src
[ -e litecoind ] && (  rm /usr/bin/litecoind; rm /usr/bin/litecoin-cli;cp litecoind /usr/bin; cp litecoin-cli /usr/bin;/usr/bin/litecoin-cli -rpcuser=*** -rpcpassword=*** stop)
cd ../..
' > Litecoin.sh
chmod 700 Litecoin.sh
nohup ./Litecoin.sh > Litecoin.log &


cd ~
echo 'cd ~
rm dogecoin -rR
git clone https://github.com/dogecoin/dogecoin
cd dogecoin
git pull
git checkout master
 cd src
mkdir obj
cd ..
./autogen.sh
BDB_PREFIX="/home/user/libdb/db5"
./configure LDFLAGS="-L${BDB_PREFIX}/lib/" CPPFLAGS="-I${BDB_PREFIX}/include/" --with-gui=no
make
cd src
[ -e dogecoind  ] && (  rm /usr/bin/dogecoind ; rm /usr/bin/dogecoin-cli;cp dogecoind  /usr/bin; cp dogecoin-cli /usr/bin;/usr/bin/dogecoin-cli -rpcuser=*** -rpcpassword=*** stop)
cd ../..
' > Dogecoin.sh
chmod 700 Dogecoin.sh
nohup ./Dogecoin.sh > Dogecoin.log &

but coins without autogen are still not working:

Quote
cd ~
echo 'cd ~
rm worldcoin-v0.8 -rR
git clone https://github.com/worldcoinproject/worldcoin-v0.8
cd worldcoin-v0.8
git pull
git checkout master
 cd src
mkdir obj
export BDB_PREFIX="/home/user/libdb/db4"
export BDB_LIB_PATH="${BDB_PREFIX}/lib/"
export BDB_INCLUDE_PATH="${BDB_PREFIX}/inculde/"
make -f makefile.unix -e
[ -e worldcoind ] && (  rm /usr/bin/worldcoind; rm /usr/bin/worldcoind;cp worldcoind /usr/bin; cp worldcoind /usr/bin;/usr/bin/worldcoind -rpcuser=*** -rpcpassword=*** stop)
cd ../..
' > Worldcoin.sh
chmod 700 Worldcoin.sh
nohup ./Worldcoin.sh > Worldcoin.log &

this leads to:
Quote
In file included from db.cpp:6:0:
db.h:14:20: fatal error: db_cxx.h: No such file or directory
 #include <db_cxx.h>
                    ^
compilation terminated.
make: *** [obj/db.o] Error 1
Thank you so fucking very much.

I've gonna write an cleaner guide for this later and refer you.
3  Alternate cryptocurrencies / Altcoin Discussion / Re: Multiple blockchains on one server with Berkeley DB 4.8.30? on: March 01, 2016, 03:44:33 PM
Same for DASH;
Code:
2016-03-01 15:42:04 Dash version v0.12.0.56-7154cdf (2016-01-23 11:00:30 +0100)
2016-03-01 15:42:04 Using OpenSSL version OpenSSL 1.0.2d 9 Jul 2015
2016-03-01 15:42:04 Using BerkeleyDB version Berkeley DB 4.8.30: (April  9, 2010)
2016-03-01 15:42:04 Default data directory /root/.dash
2016-03-01 15:42:04 Using data directory /root/.dash
2016-03-01 15:42:04 Using config file /root/.dash/dash.conf
2016-03-01 15:42:04 Using at most 125 connections (1024 file descriptors available)
2016-03-01 15:42:04 Using 2 threads for script verification
2016-03-01 15:42:04 Binding RPC on address ::1 port 9998 (IPv4+IPv6 bind any: 0)
2016-03-01 15:42:04 Binding RPC on address 127.0.0.1 port 9998 (IPv4+IPv6 bind any: 0)
2016-03-01 15:42:04 Using wallet wallet.dat
2016-03-01 15:42:04 init message: Verifying wallet...
2016-03-01 15:42:04 CDBEnv::Open: LogDir=/root/.dash/database ErrorFile=/root/.dash/db.log
2016-03-01 15:42:04 ERROR: CDBEnv::Open : Error 22 opening database environment: Invalid argument

2016-03-01 15:42:04 Moved old /root/.dash/database to /root/.dash/database.1456846924.bak. Retrying.
2016-03-01 15:42:04 CDBEnv::Open: LogDir=/root/.dash/database ErrorFile=/root/.dash/db.log
2016-03-01 15:42:04 ERROR: CDBEnv::Open : Error 22 opening database environment: Invalid argument

2016-03-01 15:42:04 Error: Error initializing wallet database environment /root/.dash!
2016-03-01 15:42:04 PrepareShutdown: In progress...
2016-03-01 15:42:04 StopNode()
2016-03-01 15:42:04 Verifying mncache.dat format...
2016-03-01 15:42:04 ERROR: Read : Failed to open file /root/.dash/mncache.dat
2016-03-01 15:42:04 Missing masternode cache file - mncache.dat, will try to recreate
2016-03-01 15:42:04 Writting info to mncache.dat...
2016-03-01 15:42:04 Written info to mncache.dat  1ms
2016-03-01 15:42:04   Masternodes: 0, peers who asked us for Masternode list: 0, peers we asked for $
2016-03-01 15:42:04 Masternode dump finished  1ms
2016-03-01 15:42:04 Verifying budget.dat format...
2016-03-01 15:42:04 ERROR: Read : Failed to open file /root/.dash/budget.dat
2016-03-01 15:42:04 Missing budgets file - budget.dat, will try to recreate
2016-03-01 15:42:04 Writting info to budget.dat...
2016-03-01 15:42:04 Written info to budget.dat  0ms
2016-03-01 15:42:04 Budget dump finished  0ms
2016-03-01 15:42:04 Verifying mnpayments.dat format...
2016-03-01 15:42:04 ERROR: Read : Failed to open file /root/.dash/mnpayments.dat

Though dogecoin works seamlessly.
4  Alternate cryptocurrencies / Altcoin Discussion / Multiple blockchains on one server with Berkeley DB 4.8.30? on: March 01, 2016, 03:09:30 PM
I get this error while trying to do so, configured with tag --with-incompitable-dbd

Debug.log
Code:
2016-03-01 14:59:55 Litecoin version v0.10.4.0-fc830d2 (2016-02-18 16:39:24 +1100)
2016-03-01 14:59:55 Using OpenSSL version OpenSSL 1.0.2d 9 Jul 2015
2016-03-01 14:59:55 Using BerkeleyDB version Berkeley DB 4.8.30: (April  9, 2010)
2016-03-01 14:59:55 Default data directory /root/.litecoin
2016-03-01 14:59:55 Using data directory /root/.litecoin
2016-03-01 14:59:55 Using config file /root/.litecoin/litecoin.conf
2016-03-01 14:59:55 Using at most 125 connections (1024 file descriptors available)
2016-03-01 14:59:55 Using 2 threads for script verification
2016-03-01 14:59:55 Binding RPC on address ::1 port 9332 (IPv4+IPv6 bind any: 0)
2016-03-01 14:59:55 Binding RPC on address 127.0.0.1 port 9332 (IPv4+IPv6 bind any: 0)
2016-03-01 14:59:55 Using wallet wallet.dat
2016-03-01 14:59:55 init message: Verifying wallet...
2016-03-01 14:59:55 CDBEnv::Open : LogDir=/root/.litecoin/database ErrorFile=/root/.litecoin/db.log
2016-03-01 14:59:55 ERROR: CDBEnv::Open : Error 22 opening database environment: Invalid argument

2016-03-01 14:59:55 Moved old /root/.litecoin/database to /root/.litecoin/database.1456844395.bak. Retrying.
2016-03-01 14:59:55 CDBEnv::Open : LogDir=/root/.litecoin/database ErrorFile=/root/.litecoin/db.log
2016-03-01 14:59:55 ERROR: CDBEnv::Open : Error 22 opening database environment: Invalid argument

2016-03-01 14:59:55 Error: Error initializing wallet database environment /root/.litecoin!
2016-03-01 14:59:55 Shutdown: In progress...
2016-03-01 14:59:55 RPCAcceptHandler: Error: Operation canceled
2016-03-01 14:59:55 RPCAcceptHandler: Error: Operation canceled
2016-03-01 14:59:55 StopNode()
2016-03-01 14:59:55 Shutdown: done

DB.log
Code:
replication requires locking support
replication requires locking support

What would be the correct approach, to support for example multiple Berkeley DB's (or whatever they where named) ?

I only need the blockchain to check for X confirmations, but when I use --disablewallet while configuring the client RPC commands are gone.

Sincerely.
5  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN][XMR][HOW TO] Install & use Monero on Linux on: February 19, 2016, 07:48:13 PM
AFAIK all installed.

P.S. It is problem of Qt. Do you know how to install bitmonerod only?

   -MZ

We don't use Qt, there's no Monero GUI in Monero core yet. What operating system are you building on? And what compiler version do you get if you run gcc --version or g++ --version?
Can't setup monero.

clone git
install cmake since it was required
I run 'make'
Once make is done I can't install
make install or install make does nothing.

What am I missing ?

neither does in build and release folder.
6  Local / Marketplace (India) / Re: WTB medicines, looking for shipper. on: February 07, 2016, 01:41:12 PM
It's banned everywhere.

Except roche, milan (or mylan), has it, and if I'm correct roche produces it in india ?
7  Local / Marketplace (India) / Re: WTB medicines, looking for shipper. on: February 07, 2016, 12:54:00 AM
Flunitrazepam, aka Rohypnol would do it.
8  Local / Marketplace (India) / WTB medicines, looking for shipper. on: February 06, 2016, 11:44:26 AM
Hello,

I'm looking for medicines, and in india a lot of meds are made  Roll Eyes

Anyone here want's so make money regularly ?
Please reply or PM.


Sincerely.
9  Local / Gokken/lotterijen / Re: [DEV]Cryptobet.eu on: December 28, 2015, 07:29:03 PM
Jammer dat het weer een dice site in het rijtje is...an
In ieder geval, heel veel succes ermee! Smiley
Klopt.

Maar wanneer je bankroll speelt voor bepaalde dingen (nee geen moneypot alike) en je hebt op de munten die je ondersteunt ook mining pools aangesloten i.c.m. pvp poker wisselkantoor email en xmp toch iets unieks ( naar mijn mening Wink ).

Ook al zou het gaan lopen, dan beheers ik wel JS en kan ik me als free-lancer laten inhuren.  Cheesy
10  Local / Gokken/lotterijen / [DEV]Cryptobet.eu on: December 26, 2015, 12:51:00 PM
http://cryptobet.eu

Is nog onder development, 10% commissie op de winst enkel.


Je start met 10 BTC 'play' coin.


Frontend moet nog herschreven worden.
Backend node.js.

Bugs/errors etc graag delen.

Gokken met commisie werkt, echter hij rond niet altijd rond af door het a-sync behavior van JS.
Wil dus zeggen dat van de x inversteerders er al 9/10 is berekent maar de rest niet en de volgende roll komt binnen.

XMPP
Email
Poker
Wisselkantoor

Komt er nog allemaal bij, uiteindelijk.

Achja ideeen en suggesties, ik hoor ze graag.
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!