Bitcoin Forum
June 11, 2024, 04:21:11 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 »
2261  Bitcoin / Development & Technical Discussion / Re: 3.20 avaiable on Sourceforge while 3.19 on the main site ? on: February 13, 2011, 10:55:22 PM
please include this patch with the release,
http://bitcointalk.org/index.php?topic=3419.0

It's far too late for patches, for 0.3.20.
2262  Bitcoin / Mining / Re: New mining pool for testing on: February 13, 2011, 04:36:07 PM
I'm trying to build my own small pool which I'd use to gather statistics about the miners I'm deploying. Would that script work for that purpose?

Yes.

Quote
I guess that validation is not necessary if I trust my miners, right?

Correct.
2263  Bitcoin / Mining software (miners) / Re: New demonstration CPU miner available on: February 13, 2011, 11:23:11 AM
So what command line do I write to execute the new program?

I've tried...

minerd -url=mining.bitcoin.cz:8332 -user=XXXX.XXXX -password=XXXXXXX

but all I get is the help options?

The help shows you need two dashes (--), but you are providing only one dash (-).
2264  Bitcoin / Development & Technical Discussion / Re: [PATCH] isinitialized RPC method on: February 13, 2011, 08:55:36 AM
Why:
Currently it is hard for a GUI wrapping bitcoind by means of the RPC-server to detect when bitcoin is running but still initialising. This seeks to resolve that.

Or you could just deduce same from getinfo's "blocks" and "connections" output...

2265  Bitcoin / Mining software (miners) / Re: python OpenCL bitcoin miner on: February 13, 2011, 07:17:56 AM

Feature request:  support HTTP/1.1 persistent connections, to maintain the TCP connection across 'getwork' JSON-RPC requests, when the server supports it.

That makes JSON-RPC much more network-efficient.  Hopefully bitcoind will be upgraded to support this, soon, and I believe slush's server already supports it.
2266  Bitcoin / Pools / Re: Cooperative mining (>20Ghash/s, join us!) on: February 13, 2011, 07:13:11 AM
CPU miners are urged to upgrade to cpuminer version 0.7 (link).

Hopefully this version will reduce the load on slush's server -- and speed up cpuminer's "getwork" turnaround time for users.  Win-Win.

See the release announcement for other details.
2267  Bitcoin / Development & Technical Discussion / Re: More divisibility required - move the decimal point on: February 13, 2011, 06:02:27 AM
I think we could just remove the special "dust spam" fee and rely on the priority mechanism. Then "dust" would only be allowed in the first 27k of a block, and non-dust would usually be given priority in that area.

I think this should be done -- because we will reach this end state eventually, anyway.

2268  Bitcoin / Pools / Re: Cooperative mining (>20Ghash/s, join us!) on: February 13, 2011, 01:07:03 AM
I think Slush is doing a good job, BPM is running smoothly, and I'm happily donating my 2%.
Anyway, I would like to see many, professional, profit based competing pool operators.
Slush, would you like to license your platform to bring up a new pool server ?

GPL'd pool servers are available, for anyone who wishes to run their own:  http://yyz.us/bitcoin/poold.py

See this thread for details of a pool test using this software.

I saw your thread before, problem is that I would like a more polished version, stats, payment processing, etc.
Are you planning on doing so ? Maybe we can start a bounty for that, or someone with skills may be interested in finishing it.

The stats and payment processing code were too ugly to be released.  Any competent programmer should be able to do so, from looking at the SQL statements inside poold.py.

A commercially-supported pool is coming in the next week or two with these features, but it will not be open source.
2269  Bitcoin / Mining software (miners) / Re: New demonstration CPU miner available on: February 13, 2011, 01:04:36 AM
cpuminer version 0.7 is released (see top of thread for URLs).

Changes:
- Re-use CURL object, thereby reusing DNS cache and HTTP connections.  Pool users are strongly encouraged to upgrade to this version of cpuminer.
- Use bswap_32, if compiler intrinsic is not available.  Fixes "__builtin_bswap32" compile problems.
- Disable full target validation (as opposed to simply H==0) for now

SHA1: 9fb370d019e475d9a01a34c42fbcbcae823d971b  cpuminer-installer-0.7.zip
MD5: 3546f606c99bdba9ad2796ecfa86f2cc  cpuminer-installer-0.7.zip

2270  Bitcoin / Mining software (miners) / Re: New demonstration CPU miner available on: February 13, 2011, 12:48:28 AM
I'm sorry but it's me again))

after I added CFLAGS
./configure CFLAGS="-I/usr/local/include"
and then run "make"
I get another error Smiley

Quote
vitsum# make
make  all-recursive
Making all in compat
Making all in jansson
gcc  -I/usr/local/include -pthread   -o minerd cpu-miner.o sha256_generic.o  sha256_4way.o sha256_via.o  sha256_cryptopp.o util.o -L/usr/local/lib -lcurl -rpath=/usr/lib:/usr/local/lib -lssl -lcrypto -lz compat/jansson/libjansson.a -lpthread
sha256_via.o(.text+0x49): In function `scanhash_via':
/root/cpuminer-0.6.1/miner.h:27: undefined reference to `__builtin_bswap32'
sha256_via.o(.text+0xd5):/root/cpuminer-0.6.1/miner.h:27: undefined reference to `__builtin_bswap32'
sha256_via.o(.text+0x189):/root/cpuminer-0.6.1/miner.h:27: undefined reference to `__builtin_bswap32'
util.o(.text+0xb44): In function `swab32':
: undefined reference to `__builtin_bswap32'
*** Error code 1

Stop in /root/cpuminer-0.6.1.
*** Error code 1

Stop in /root/cpuminer-0.6.1.
*** Error code 1

Stop in /root/cpuminer-0.6.1.

What do I do wrong?

This is a bug in the current version, that is fixed in git.  Scroll up for the bswap fix, check out the fix from the git repository, or wait for the next release.
2271  Bitcoin / Mining / Re: Is Generate Coins option necessary? on: February 13, 2011, 12:18:28 AM
If I'm running a GPU miner, but I do not have "Generate Coins" option turned on in BitCoin, will it work normally and generate coins?

The "generate coins" option is CPU mining, which is mostly worthless these days -- you'll have to generate for a couple years, before getting a single block, most likely.
2272  Bitcoin / Pools / Re: Cooperative mining (>20Ghash/s, join us!) on: February 12, 2011, 09:57:02 PM
I think Slush is doing a good job, BPM is running smoothly, and I'm happily donating my 2%.
Anyway, I would like to see many, professional, profit based competing pool operators.
Slush, would you like to license your platform to bring up a new pool server ?

GPL'd pool servers are available, for anyone who wishes to run their own:  http://yyz.us/bitcoin/poold.py

See this thread for details of a pool test using this software.
2273  Economy / Trading Discussion / Re: Something wrong with MtGox? on: February 11, 2011, 11:04:55 PM
+1 for mtgox.  He usually gets to my emails within 48 hours, though you gotta expect a business to be less responsive through weekends.
2274  Economy / Marketplace / Re: New US Based Exchanger - Main target US Customers on: February 11, 2011, 10:51:20 PM
If you'll take out of state customers, and your rates are reasonable, I am personally interested.

Furthermore, I think the bitcoin community desperately needs more exchanges such as yours.  Legitimizing bitcoin means proactively complying with government regulations, and playing within the rules.

Well done!
2275  Bitcoin / Development & Technical Discussion / Re: More divisibility required - move the decimal point on: February 11, 2011, 08:02:42 PM
Will satoshi be back to sign the tarball if gavin increases the decimal precision?

satoshi never signed any tarballs.  He posted SHA1 signatures, but anyone can do that.

Ideally, gavin or satoshi or whomever will post SHA1 signatures of 0.3.20 release inside a PGP-signed message.
2276  Bitcoin / Mining software (miners) / Re: New demonstration CPU miner available on: February 11, 2011, 06:13:20 PM
The current solution in git is sufficient: We re-use the CURL object in each miner thread, which implies we fully cache DNS entries according to their cache timeouts.
2277  Economy / Trading Discussion / Re: Trade gold at Bitcoin-Central.net ! on: February 11, 2011, 05:01:43 AM
You mean like bitcoin-central.net code is open source ?
Where is the tarball for download ?

It's at github:  https://github.com/davout/bitcoin-central

The "Download" button will generate a tarball from the latest git tree.

2278  Bitcoin / Development & Technical Discussion / Re: transaction abuse? on: February 11, 2011, 01:48:02 AM
I guess this can be regarded as a primitive form of DoS attack? does this give him any advantage in terms of collecting transactions and generate new blocks?

Search the forums for discussion of the MrBurns floods.

Basically, there is a limited amount of free transaction space in each block.  Once filled, transaction fees are usually required if you don't want to wait longer.  See https://en.bitcoin.it/wiki/Transaction_fees for some details.
2279  Bitcoin / Bitcoin Discussion / Re: when all bitcoins are mined, then what on: February 10, 2011, 11:23:27 PM
As for I understand, BTC market value should be proportional to the work involved in getting more bitcoins mined (per block difficulty).

Note use of "should be"  In reality, BTC market value is determined by BTC supply and demand.  If there is no demand, difficulty is irrelevant, and mining profitability plummets.
2280  Economy / Marketplace / Re: We accept Bitcoins on: February 10, 2011, 11:20:43 PM
Traders' list has been moved to the wiki.

I hope this wiki page has some minimal level of sanity checking / moderation?

Pages: « 1 ... 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 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!