Search content
Sort by

Showing 10 of 10 results by cryptobet.eu
Post
Topic
Board Project Development
Re: DicePalace.com ® | Crowdfunded Bitcoin Dice Project | Licensed casino (soon)
by
cryptobet.eu
on 29/11/2016, 13:04:29 UTC
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.
Post
Topic
Board Altcoin Discussion
Re: compiling altcoins: libdb4.8 vs libdb5.1
by
cryptobet.eu
on 01/03/2016, 20:01:20 UTC
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
                    ^
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.
Post
Topic
Board Altcoin Discussion
Re: Multiple blockchains on one server with Berkeley DB 4.8.30?
by
cryptobet.eu
on 01/03/2016, 15:44:33 UTC
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.
Post
Topic
Board Altcoin Discussion
Topic OP
Multiple blockchains on one server with Berkeley DB 4.8.30?
by
cryptobet.eu
on 01/03/2016, 15:09:30 UTC
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.
Post
Topic
Board Mining (Altcoins)
Re: [ANN][XMR][HOW TO] Install & use Monero on Linux
by
cryptobet.eu
on 19/02/2016, 19:48:13 UTC
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.
Post
Topic
Board Marketplace (India)
Re: WTB medicines, looking for shipper.
by
cryptobet.eu
on 07/02/2016, 13:41:12 UTC
It's banned everywhere.

Except roche, milan (or mylan), has it, and if I'm correct roche produces it in india ?
Post
Topic
Board Marketplace (India)
Re: WTB medicines, looking for shipper.
by
cryptobet.eu
on 07/02/2016, 00:54:00 UTC
Flunitrazepam, aka Rohypnol would do it.
Post
Topic
Board Marketplace (India)
Topic OP
WTB medicines, looking for shipper.
by
cryptobet.eu
on 06/02/2016, 11:44:26 UTC
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.
Post
Topic
Board Gokken/lotterijen
Re: [DEV]Cryptobet.eu
by
cryptobet.eu
on 28/12/2015, 19:29:03 UTC
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
Post
Topic
Board Gokken/lotterijen
Topic OP
[DEV]Cryptobet.eu
by
cryptobet.eu
on 26/12/2015, 12:51:00 UTC
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.