Bitcoin Forum
May 04, 2024, 09:25:34 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 [67] 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 ... 122 »
1321  Alternate cryptocurrencies / Altcoin Discussion / Re: BBQcoin.org Official Thread on: May 08, 2013, 08:01:34 AM
linux builds added: http://bbqcoin.darkgamex.ch/
1322  Alternate cryptocurrencies / Altcoin Discussion / Re: Devcoin on: May 08, 2013, 07:10:46 AM
i just registered on devtome to edit the BBQ entry, do i have to wait until my account is validated or what do i have to do to get edit rights?
1323  Alternate cryptocurrencies / Altcoin Discussion / Re: Devcoin on: May 08, 2013, 06:28:32 AM
didnt knew theres a #devcoin on freenode, im there Tongue
1324  Alternate cryptocurrencies / Altcoin Discussion / Re: BBQcoin.org Official Thread on: May 07, 2013, 08:33:41 PM
CaptChadd, my thanks to you and the others you've worked with who have brought this coin up in recent months.  I'm happy to see the coin exchanging.
thanks, i hope it was worth the time Smiley
1325  Alternate cryptocurrencies / Altcoin Discussion / Re: Need help editing the p2pool code to add support for mincoin and bbqcoin on: May 07, 2013, 07:54:42 PM
here you go, I hope I chose sensible values...I also setup an initial public node referenced in the code below, you can connect your p2pool peer to it, stats here: http://bbq.crabdance.com:8900/
--snip--
for convenience i created a patch so you can apply it much easier!

Code:
Author: gritter & K1773R
https://bitcointalk.org/index.php?topic=178298.msg2062610#msg2062610

--- a/p2pool/networks.py 2013-05-07 21:46:13.546808451 +0200
+++ b/p2pool/networks.py 2013-05-07 21:50:50.566814963 +0200
@@ -44,22 +44,21 @@
         ANNOUNCE_CHANNEL='#p2pool-alt',
         VERSION_CHECK=lambda v: 50700 <= v < 60000 or 60010 <= v < 60100 or 60400 <= v,
     ),
-   
     litecoin=math.Object(
         PARENT=networks.nets['litecoin'],
         SHARE_PERIOD=10, # seconds
         CHAIN_LENGTH=24*60*60//10, # shares
         REAL_CHAIN_LENGTH=24*60*60//10, # shares
         TARGET_LOOKBEHIND=200, # shares
-        SPREAD=12, # blocks
-        IDENTIFIER='e037d5b8c6923410'.decode('hex'),
-        PREFIX='7208c1a53ef629b0'.decode('hex'),
-        P2P_PORT=9338,
+        SPREAD=30, # blocks
+        IDENTIFIER='626974636f696e21'.decode('hex'),
+        PREFIX='6772696c6c697421'.decode('hex'),
+        P2P_PORT=12339,
         MIN_TARGET=0,
         MAX_TARGET=2**256//2**20 - 1,
-        PERSIST=True,
-        WORKER_PORT=9327,
-        BOOTSTRAP_ADDRS='forre.st vps.forre.st 199.255.95.94 75.12.89.18 181.28.244.151 83.142.189.132 66.90.82.155:11332 201.57.241.77 80.222.255.91 142.68.214.29 24.52.247.82 72.230.179.177 94.127.200.29 200.204.161.215 91.121.9.7 91.235.254.37 198.154.98.195 178.79.136.10'.split(' '),
+        PERSIST=False,
+        WORKER_PORT=8900,
+        BOOTSTRAP_ADDRS='bbq.crabdance.com'.split(' '),
         ANNOUNCE_CHANNEL='#p2pool-alt',
         VERSION_CHECK=lambda v: True,
     ),
--- a/p2pool/bitcoin/networks.py 2013-05-07 21:51:01.702815224 +0200
+++ b/p2pool/bitcoin/networks.py 2013-05-07 21:51:05.518815314 +0200
@@ -84,23 +84,22 @@
         SANE_TARGET_RANGE=(2**256//2**32 - 1, 2**256//2**32 - 1),
         DUMB_SCRYPT_DIFF=1,
     ),
-   
     litecoin=math.Object(
-        P2P_PREFIX='fbc0b6db'.decode('hex'),
-        P2P_PORT=9333,
-        ADDRESS_VERSION=48,
-        RPC_PORT=9332,
+        P2P_PREFIX='fde4d942'.decode('hex'),
+        P2P_PORT=19323,
+        ADDRESS_VERSION=85,
+        RPC_PORT=59332,
         RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
-            'litecoinaddress' in (yield bitcoind.rpc_help()) and
+            'bbqcoinaddress' in (yield bitcoind.rpc_help()) and
             not (yield bitcoind.rpc_getinfo())['testnet']
         )),
-        SUBSIDY_FUNC=lambda height: 50*100000000 >> (height + 1)//840000,
+        SUBSIDY_FUNC=lambda height: 42*100000000 >> (height + 1)//24000000,
         POW_FUNC=lambda data: pack.IntType(256).unpack(__import__('ltc_scrypt').getPoWHash(data)),
-        BLOCK_PERIOD=150, # s
-        SYMBOL='LTC',
-        CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'Litecoin') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/Litecoin/') if platform.system() == 'Darwin' else os.path.expanduser('~/.litecoin'), 'litecoin.conf'),
-        BLOCK_EXPLORER_URL_PREFIX='http://explorer.litecoin.net/block/',
-        ADDRESS_EXPLORER_URL_PREFIX='http://explorer.litecoin.net/address/',
+        BLOCK_PERIOD=60, # s
+        SYMBOL='BQC',
+        CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'BBQCoin') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/BBQCoin/') if platform.system() == 'Darwin' else os.path.expanduser('~/.bbqcoin'), 'bbqcoin.conf'),
+        BLOCK_EXPLORER_URL_PREFIX='http://bbq.cryptocoinexplorer.com/block/',
+        ADDRESS_EXPLORER_URL_PREFIX='http://bbq.cryptocoinexplorer.com/address/',
         SANE_TARGET_RANGE=(2**256//1000000000 - 1, 2**256//1000 - 1),
         DUMB_SCRYPT_DIFF=2**16,
     ),
1326  Alternate cryptocurrencies / Announcements (Altcoins) / Re: BBQCoin, the coin you want to eat. on: May 07, 2013, 07:24:04 PM
BBQcoin wiki on devtome has a lot more information on BQC: http://devtome.com/doku.php?id=bbqcoin
arr, im not listed there! shame! sad me Sad
1327  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN] [DVC] ASCMDVCPT Cryptostock Investment on: May 06, 2013, 10:31:10 PM
Wow ok all the initial shares listed have been sold Smiley

will update when more will be available... there are still sell orders there for people to buy in on.
i want some too Tongue
1328  Alternate cryptocurrencies / Announcements (Altcoins) / Re: BBQCoin, the coin you want to eat. on: May 06, 2013, 10:07:05 PM
Jesus please markm please send me my coins now lol. Omg I'll cry and die if I get scammed 3 times in a row especially after THIS news!

edit: Just being over dramatic.. but yeah lol No offense markm cuz I know i was a bitch about taking so long to send my coins.
he wont scam u, just wait Smiley if you let him wait so long you should atlast do the same.
1329  Bitcoin / Mining software (miners) / Re: CGMINER ASIC FPGA GPU overc monit fanspd RPC linux/win/osx/mip/r-pi 3.1.0 on: May 06, 2013, 09:32:18 PM
Out of curiosity, what version was the last Linux binaries to support CPU mining before it was removed?

Thanks
CPUmining ist not welcome here, if you need a miner get the best one: https://github.com/pooler/cpuminer/
since u got ur tool, dont talk about CPUmining anymore in here Tongue

EDIT: ck, if you want il remove it Wink
1330  Bitcoin / Wallet software / Re: Ufasoft Coin - Multi-currency Open Source client for Windows on: May 06, 2013, 09:27:59 PM
I think .NET support is not enough. WPF requires some support from Graphics drivers.

the examples are working so far (according to test results)
1331  Alternate cryptocurrencies / Announcements (Altcoins) / Re: BBQCoin, the coin you want to eat. on: May 06, 2013, 09:26:30 PM
successfull trade with Praxis

Oh you are alive. I was wondering whether you were ever going to return from your attempt at trading with major whatzit.

(How did that go, by the way? Last you'd posted was that you'd report back on that... At least you're not dead in an alley,,, if it is still you using that forum-handle, Hmm maybe it is someone else, someone who did not know what you had last posted due to not being you...)

-MarkM-
very unlikely that someone hijacks my account Wink
well, he made his offer and also offered to go first, after that no answer and hasnt been online again.

So basically even going first he cannot be trusted.

A lot of scammers seem to do that, maybe some percent of suckers do not actually check the scammer did go first, they just assume that since he said he will he will, so they go ahead and do their send blindly or something.

Or maybe he'll be back saying he was going to go first last time so you should be the one going to go first next time.

-MarkM-
i gave him the BTC address to pay to, if he pays -> trade will happen of course Wink but in this case i'l let u know.
btw, i can recommend Praxis (several tx's already)
1332  Bitcoin / Wallet software / Re: Ufasoft Coin - Multi-currency Open Source client for Windows on: May 06, 2013, 04:54:25 PM
if it dosnt work native, just use WINE (but not for mining of course)
WINE does not support WPF, used by Coin.exe
it is, atleast in .NET 3/4
http://appdb.winehq.org/objectManager.php?sClass=application&iId=2586
1333  Alternate cryptocurrencies / Altcoin Discussion / Re: Qubic - Quorum-Based Coin on: May 06, 2013, 04:33:36 PM
this projects surely needs more velocity Sad
1334  Bitcoin / Wallet software / Re: Ufasoft Coin - Multi-currency Open Source client for Windows on: May 06, 2013, 04:17:30 PM
So... I had been looking for a multi-currency client and found this very interesting project. Downloaded source, created linux RPMs, installed it, started coind - WHAM, Segfault. Next attempt fails with SQLite error message because wallet.db is an empty file.

Platform is openSUSE-12.3 x86_64 . I had to patch a few things to get it built without errors (and quite a few more to get it built on i586 as well!).
See
https://build.opensuse.org/package/show?package=ufasoft_coin&project=home%3Ap_conrad for details. Any advice would be appreciated.

Thanks!
if it dosnt work native, just use WINE (but not for mining of course)
1335  Alternate cryptocurrencies / Announcements (Altcoins) / Re: BBQCoin, the coin you want to eat. on: May 06, 2013, 03:30:23 PM
successfull trade with Praxis

Oh you are alive. I was wondering whether you were ever going to return from your attempt at trading with major whatzit.

(How did that go, by the way? Last you'd posted was that you'd report back on that... At least you're not dead in an alley,,, if it is still you using that forum-handle, Hmm maybe it is someone else, someone who did not know what you had last posted due to not being you...)

-MarkM-
very unlikely that someone hijacks my account Wink
well, he made his offer and also offered to go first, after that no answer and hasnt been online again.
1336  Alternate cryptocurrencies / Announcements (Altcoins) / Re: BBQCoin, the coin you want to eat. on: May 06, 2013, 03:21:48 PM
successfull trade with Praxis
1337  Alternate cryptocurrencies / Announcements (Altcoins) / Re: BBQCoin, the coin you want to eat. on: May 06, 2013, 02:24:43 PM
im still selling 2500 BQC for 1BTC, the other trader didnt respond anymore. i can sell more (and at other prices) just send me ur request Smiley

EDIT: i have more than 2.5k, this was just a trade that has been offered by Majormax
1338  Alternate cryptocurrencies / Altcoin Discussion / Re: Devcoin on: May 06, 2013, 04:43:14 AM
just use pywallet...
1339  Alternate cryptocurrencies / Announcements (Altcoins) / Re: BBQCoin, the coin you want to eat. on: May 05, 2013, 11:49:11 PM
markm did he scam u? hes trying to trade with me

I didn't give him much chance to, he refused to send first so no deal.

-MarkM-

well he offered to go first and some references wich seem ok, lets see! il report back Smiley
1340  Alternate cryptocurrencies / Announcements (Altcoins) / Re: BBQCoin, the coin you want to eat. on: May 05, 2013, 11:00:15 PM
markm did he scam u? hes trying to trade with me
Pages: « 1 ... 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 [67] 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 ... 122 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!