Bitcoin Forum
May 25, 2024, 04:54:27 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 [24] 25 26 27 »
461  Bitcoin / Development & Technical Discussion / Re: PHP, jsonRPClient, bitcoind - Not able to pass multiple parameters on: January 01, 2014, 05:19:12 PM
catch the exception!
462  Bitcoin / Project Development / Re: [ANN] MultiCoin Wallet-BTC,LTC,PPC,QRC,WDC,MGC,NVC,XPM -would you be interested? on: January 01, 2014, 01:03:45 PM
multibit client can open multiple wallet file, it's a good base: every coin types are in different file.
463  Alternate cryptocurrencies / Altcoin Discussion / Re: The genesis block is hurting my soul.. Please help [25 MegaCoin bounty] on: December 30, 2013, 05:24:39 PM
Hi,

This is your genesis block hash:
Quote
2013-12-30 04:03:26 84d3cf22c9d4a4cbda424fc0e5a7169f33780395039b3959fec424649d690d07

Put that to this line:
Quote

This is your merkleroot:
Quote
2013-12-30 04:03:26 b6580b90a6dd4b1169d76f034d408cdaa07f44e653bca4da0cd4216d8b22cc0d

Put that to this line:
Quote

After if you get somethink like this:
Quote
CheckProofOfWork() : hash doesn't match nBits

This genesis block is not good, because doest fit for start difficulty.
need a new one. Put this source code before this line (block.print()):
Quote

run the app, this will "mine" a new genesis block (need lot of time!!) for you.
 if it's founded, modify your source: nNonce, nTime and the new hash (GetHash = XX) for genesis block hash.

you can remove the inserted code, and you have a new altcoin  Wink

(if you want a testnet genesis block, do the same and dont forget to start with -testnet, and modify the testnet nNonce, nTime and hash!)

Elbandi
464  Economy / Services / Re: Need A Console Version Built on: December 29, 2013, 11:07:16 PM
Do you mean the the daemon as "Console Version"?

I can build it.
465  Economy / Services / Re: I'm starting an Altcoin, who can compile me a QT? on: December 29, 2013, 10:52:10 PM
merred: check you pm
466  Other / Beginners & Help / Re: Best Android App to read this forum ? on: December 29, 2013, 01:38:44 PM
Hi,

I wroted one. But now I'm a bit busy, so the development is slower than I planned  Sad

Elbandi
467  Bitcoin / Development & Technical Discussion / Re: compiling bitcoin-qt in cubian/weezy on: December 28, 2013, 07:59:37 PM
pastebin the full log.
468  Bitcoin / Project Development / Re: MiniFaucet Script (a MyFaucet replacement) on: December 28, 2013, 01:43:39 AM
There was a bug in 0.3, so i have to release a new 0.4. In exchange for, admin page gets a statistics table.

By the way, your demo site is down.
i missed the demo config.

You have to setup a daemon for this?
Coinbase/Blockchain.info dont support altcoin, so you have to run a daemon.
I dont know good altcoin online wallet.
469  Bitcoin / Project Development / Re: MiniFaucet Script (a MyFaucet replacement) on: December 27, 2013, 08:06:11 PM
New version is public!
the main new features is altcoin support (btc, ltc, nmc, nvc, ppc, wdc, doge  Cheesy)

if you upgrade, you sould migrate the config!
470  Other / Beginners & Help / Re: How can I set up a faucet? (dogecoin) on: December 27, 2013, 12:17:09 PM
you can use this with dogecoind: https://bitcointalk.org/index.php?topic=333748.0

Elbandi
471  Bitcoin / Project Development / Re: Looking for faucet code on: December 25, 2013, 02:31:51 PM
https://bitcointalk.org/index.php?topic=333748.0  Roll Eyes

Elbandi
472  Bitcoin / Development & Technical Discussion / Re: PHP address validator (non JSON-RPC) on: December 25, 2013, 01:51:56 PM
Sorry to revive this topic, but I wanted to update it to mention that I took the above script and quickly converted it to a class so we don't contaminate our name spaces so much...  Also added the TestNet address version.
http://pastebin.com/nvmQJBAm

maybe a generic address tester, like this:

Code:
abstract class CoinValidator {
 private $addressversion = "00"; //this is a hex byte
 abstract protected function getAddressVersion($testnet);

 public function __construct($testnet = false)
    {
        $this->addressversion = $this->getAddressVersion($testnet);
    }
 ...
}

class BitCoinValidator extends CoinValidator {
  protected function getAddressVersion($testnet) {
    return ($testnet) ? "6F" : "00"; //TestNet vs ProductionNet
  }
}

class LiteCoinValidator extends CoinValidator {
  protected function getAddressVersion($testnet) {
    return ($testnet) ? "6F" : "30"; //TestNet vs ProductionNet
  }
}

class FooCoinValidator extends CoinValidator {
  protected function getAddressVersion($testnet) {
    return ($testnet) ? "XX" : "XX"; //TestNet vs ProductionNet
  }
}
...

Elbandi
473  Bitcoin / Project Development / Re: Qt Bitcoin Trader [Open Source secure trading client for Mac/Windows/Linux] on: December 24, 2013, 01:34:06 PM
Hi,

There is a bug in orders log, here is a sample line copied line (copy selected rows):
Quote
2013. 12. 23. 21:54:14 sold $17.0 $17.00000001

two issue:
  • the amount is missing (1 ltc)
  • i sold 1 ltc at 17$, the app say the total is $17.00000001
on btc-e webpage, the trade history is ok.

Elbandi
474  Bitcoin / Development & Technical Discussion / Re: Forcing all sends to a specific address? on: December 24, 2013, 12:36:03 PM
try:
https://github.com/bitcoin/bitcoin/blob/master/src/rpcwallet.cpp#L323

change to:
Code:
CBitcoinAddress address("destaddress");

and search other rpc calls too (like createrawtransaction @ rpcrawtransaction.cpp, etc )

recompile the source
475  Bitcoin / Development & Technical Discussion / Re: Frontend on: December 23, 2013, 10:32:31 PM
i think this: https://github.com/Greedi/mmcFE
476  Bitcoin / Project Development / Re: [BOUNTY] Ubuntu 12.04 Environment to compile bitcoin on: December 23, 2013, 04:50:32 PM
Ah, you use 3thparty repo, which use different name for upnp.

try install with this command:
Code:
apt-get install -y libminiupnpc8-dev libminiupnpc8

Or if you want to install the official package:
Code:
apt-get install -y libminiupnpc-dev=1.6-3ubuntu1 libminiupnpc8=1.6-3ubuntu1
477  Alternate cryptocurrencies / Marketplace (Altcoins) / Re: [WTR] 11,000 KH/S scrypt hashing power for rent on: December 23, 2013, 02:04:28 PM
0.34ltc is ~6$, the current best altcoin give 12$ (on Cryptsy ex)... thats 2x profit.

i seach for good rent too, but i found impossible offers only...  Shocked
478  Alternate cryptocurrencies / Marketplace (Altcoins) / Re: [WTR] 11,000 KH/S scrypt hashing power for rent on: December 23, 2013, 01:11:27 PM
hahahhaa, coinwars say: 0.3445 ltc/day with 1000khs. and you want 3x price?  Huh
479  Bitcoin / Project Development / Re: [BOUNTY] Ubuntu 12.04 Environment to compile bitcoin on: December 23, 2013, 08:40:16 AM
This looks pretty good.  There is still one apparently well known problem. 

On my system, I have the directory path /etc/apt/preferences.d/.  This directory is empty.  I am assuming that this is where the file should go that is mentioned in the answer linked above.  What should that file name be, and should that fix be applied?


what is the result for this command
Code:
apt-cache policy libminiupnpc8 libminiupnpc-dev
480  Bitcoin / Project Development / Re: [BOUNTY] Ubuntu 12.04 Environment to compile bitcoin on: December 23, 2013, 01:03:22 AM
Hi,

Here:
Quote
apt-get install -y git-core build-essential
apt-get install -y libboost-system-dev libboost-filesystem-dev libboost-program-options-dev libboost-thread-dev libboost-test-dev
apt-get install -y libdb5.1++-dev libssl-dev pkg-config qt4-qmake libqt4-dev libqrencode-dev libminiupnpc-dev
git clone https://github.com/ahmedbodi/bytecoin/
cd bytecoin/
qmake bytecoin-qt.pro USE_QRCODE=1
make
cd src; make -f makefile.unix bytecoind

Some more packages may be missing if your env is different from mine. (in created the test env with debootstrap)

Elbandi
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 [24] 25 26 27 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!