Bitcoin Forum
June 21, 2024, 06:18:38 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 ... 247 »
2661  Bitcoin / Development & Technical Discussion / Re: BIP proposal: automated compliance check and block template exchange on: December 12, 2012, 07:25:41 AM
This is basically what BIP 23 Proposals do... you send the node your proposed block (before solving the proof of work) and it does all the validity checks and confirms it's valid. For long chains of multiple proof-less blocks, I suppose it might need some kind of extension, but that strikes me as sort of a "testnet mode" more than part of the protocol for exercising it.
2662  Bitcoin / Development & Technical Discussion / Re: ANN: Announcing code availability of the bitsofproof supernode on: December 12, 2012, 06:11:39 AM
And yes, I agree that a more diverse landscape with multiple trusted full implementations would be better, under the condition that those are well tested. I would find it a pity (but perhaps inevitable) if large miner setups would need to run multiple node implementations, and compare their constructed block against all...

If implementations support an efficient block template exchange and mutual verification then it could be cheap for the miner to run several implementations to test block template against before mining work is spent. They could as well run different versions of Satoshi code to ensure backward compatibility.

The actual implementation of such block template exchange would also be the testing interface implementations could challenge each other. I suggested this idea to Gavin about a month ago and he liked it. Now I see a further significant use of it.

Such use would however only be valuable if it is jointly supported across implementations, therefore suggest to evolve it as a BIP for block template challenge/response.

I am ready to work on the definition and implement it since it fits well to the deliverable of testing. How about you core team ?
Except this has been around for months now already... it's the BIP 23 Proposals I suggested you implement earlier.
2663  Bitcoin / Mining software (miners) / Re: BFGMiner: modular FPGA/GPU & X6500, overclk/fans, GBT, RPC, Linux/PPA/Win 2.10.0 on: December 11, 2012, 05:44:18 AM
NEW VERSION 2.10.0, DECEMBER 11 2012

Lots of new code here, not much testing yet. I'm promoting 2.9.5 to stable and releasing this as not-yet-stable.

Human readable changelog:
  • Avoid fetching more GBT jobs when we already have a usable one, or are already in the process of getting a new one that will suffice. This drastically improves efficiency on GBT pools and reduces unnecessary bandwidth waste.
  • Share submissions are now processed asyncronously in parallel, in a single dedicated thread, instead of spawning a new thread for every submission. This makes BFGMiner scale better to bigger rigs with more shares, and enables it to react to network outages better. Additionally, a new "AS" (Active Submissions) number has been added to the status line to make it easy to see at a glance what's going on.
  • New --skip-security-checks option to allow miners to skip checks when it saves bandwidth (stratum).
  • Con's new work scheduler: The old work scheduler would spawn threads that all tried to grab work as best as they could, and this would lead to much more work than necessary being grabbed from getwork pools, and potentially hitting the pool at precisely the same time from multiple threads making a getwork failure more likely. It was also very difficult to track how much work was really available at any one time since all the threads were off doing their own thing. Centralising the work creation means it is strictly tracked now and as soon as one work item is taken, the scheduler will generate or download another one. The advantage here is to maximise the efficiency of work we get from any getwork source, be it with or without rolltime. It is also much less likely to have dips in providing work, should lead to less getwork failures, and scale to higher hashrates even with the old getwork protocols.
  • When the primary pool is stratum, GBT, or getwork in failover mode, no backup connections will be maintained to backup pools. The total number of unused stratum connections now should be extremely small.
  • Ztex driver improvements courtesy of Denis and Peter.
  • Lots of work under the hood and other minor goodies. Check full changelog.

Full changelog
  • Bugfix: Free work before replacing it with clone
  • Bugfix: Since we are using pipes for select notifier on *nix, we need to use read/write there
  • Bugfix: Winsock needs send/recv for sockets, not write/read
  • Bugfix: opencl: Initialize pc_data to avoid clean_work checking uninitialized pointers
  • Bugfix: Correct parenthesis in bind() call in Windows notifier_init
  • Include Windows error messages in notifier_init errors
  • Include prctl header for thread renaming to work.
  • Set tv_idle time if a pool is not active when input from the menu.
  • minor unlikely zero pointer test
  • BeaverCreek doesn't like BFI INT patching.
  • Only stratum pools that are idle need to be kicked via cnx_needed.
  • Do not do any setup if opt_api_listen is disabled in api.c.
  • libztex: in case the selectFpga() failed set the selected fpga to unknown
  • Only set the lagging flag for select_pool() on failed getwork if we're not in opt_fail_only mode.
  • driver-ztex: support for broken fpga on a multifpga board
  • libztex: use a function for the twice called firmware reset code
  • libztex: removed an unused struct member (ztex->valid)
  • Set the pool lagging flag on startup to avoid it being shown initially, and only unset it once the maximum number of staged work items has been reached.
  • libztex: Include compat.h for substitute libusb_error_name (on older libusb versions missing it)
  • Suppress warning about "succeeded" not being used in finish_req_in_progress for now
  • Bugfix: Always give the get_work thread a curl, regardless of other outstanding curls in use
  • Bugfix: Failover after even a single job-request failure (or else it takes too long on timeouts)
  • Bugfix: Need to remove and re-add curl easy handles from multi to start a new request
  • Access total_submitting under mutex lock to avoid any potential races, and increment it as soon as we queue the submission up
  • Just leave the submit_work thread running persistently
  • Bugfix: Restore work->pool after prepare_rpc_req since clean_work now clears it
  • Bugfix: Now that stage_work is trying to manipulate staged_work in the same thread, clone_available needs to stage it outside of its own lock
  • Make main() the getwork scheduler once everything is set up, so that all app exits use the kill_work and quit paths.
  • Set successful connect to true on auth stratum to allow summary on exit from single stratum pool.
  • Hash_pop should signal further waiters on its own pthread conditional in case there are multiple waiters.
  • Check the job_id has not changed on stratum work when deciding if the work is stale as might occur across disconnections.
  • Perform pool_resus on getwork pool that generates work in getwork_thread.
  • Set pool lagging message for getwork pool that falls to zero staged in getwork thread.
  • Stage extra work when the primary pool is a getwork pool without rolltime.
  • Do not try to clean up twice if kill message is given.
  • Only recalculate total_staged in getwork thread if required.
  • Include the correct config header in libztex and include it before other includes.
  • Implement a completely new getwork scheduler. Stage all work from the one thread, making it possible to serialise all requests minimising the number of getworks requested or local work generated. Use a pthread conditional to wake up the thread whenever work is removed to generate enough work to stay above the watermark set by opt_queue. Remove all remnants of the old queueing mechanism, deleting the now defunct queued count.
  • Bugfix: Clean up share hashing and target checks, fixing share difficulty calculation for above-target would-be-shares
  • Use templates from pool_active and longpolls without fetching more unnecessarily
  • Try to avoid requesting GBT jobs when there is already a request in progress that will likely provide sufficient work
  • Reuse most recent GBT job if in get_work_thread if it isn't stale
  • libztex: fixed some warnings and removed some whitespaces
  • Remove all references to the now unused workio_cmd structure.
  • Remove the old workio command queue thread, replacing it with a kill conditional to exit the program.
  • Remove getwork command from workio_cmd queues and do them directly from queue_request.
  • Begin tearing down the old workio command queues by removing submit commands from there and submit them asynchronously via their own threads.
  • driver-ztex: changed two pairs of malloc()/memset() to calloc()
  • libztex: Read bitstream file in 2kb blocks with simpler and faster code
  • Added the binary versions of ztex_ufm1_15d4.ihx and ztex_ufm1_15y1.ihx
  • libztex: Add firmware download support for ZTEX 1.15d and 1.15x
  • libztex: Factor out local version of libusb_get_string_descriptor_ascii()
  • libztex: Don't return error when a bitstream was already configured
  • libztex: Read bitstream file in 64kb blocks with simpler and faster code
  • libztex: Verify that the mining firmware is not a dummy firmware
  • libztex: Match mining firmware ZTEX descriptor against the dummy firmware
  • libztex: Start download sequence only after reading in the new firmware
  • libztex: Download mining firmware to all devices with dummy firmware
  • Update windows build instructions.
  • Set pool probed to true on successful authorisation with stratum to avoid it being pinged later.
  • Style changes.
  • Allow pool active to be called on stratum or disabled pools in the watchpool thread if the pool has not been probed.
  • lock (most of) the threaded statistics updates
  • README stats don't add up
  • Rearrange summary lines and include count of active submissions in progress
  • Defer submissions instead of blocking in pop_curl_entry
  • Run a single share submission thread asynchronously submitting all shares in parallel
  • Handle share submissions asynchronously, one at a time (still threaded)
  • Split up json_rpc_call so it can be used asynchronously in libcurl-multi
  • Split submit_upstream_work into _request and _completed stages, pulling out json_rpc_call
  • Bugfix: Adjust USB_* variables to new LIBUSB_* names
  • Bugfix: Avoid double-free due to realloc_strcat moving memory around
  • Bugfix: Stratum connections might be needed for share submissions up to a minute after the last time they are used to generate work
  • Bugfix: Clean work before trying to generate new stratum work on top of it
  • Bugfix: modminer: Get rid of useless usbutils include
  • Make need connection return true if a pool is idle.
  • New --skip-security-checks option to allow miners to skip checks when it saves bandwidth
  • Skip stratum transaction download when there are no transactions
  • API add Best Share to summary
  • API lock access to some summary statistics (and copy them)
  • Enable backup stratum connections for getwork when the primary pool doesn't have longpoll aka solo mining.
  • Check for correct absence of opt_fail_only in cnx_needed.
  • Remove unused variable.
  • The specification for stratum has been elaborated to say that a changed diff applies only to new work so do not retarget when submitting shares.
  • Suspend stratum connections to backup pools when there is no requirement to potentially grab work from them.
  • Rename rename_thr to RenameThread to match cgminer
  • modminer: Adopt symbolic command names from kanoi
  • Make gen_stratum_work more robust by using a dynamically allocated array for the header in case bogus data is sent by the pool to avoid overflowing a static array.
  • scrypt_diff now returns a uint64_t
  • Support monitoring and reporting much higher diffs for scrypt mining, truncating irrelevant zeroes from displayed hash.
  • Pass ostate values around in scrypt to be able to extract full hashes if needed later on.
  • Revert "Handle crash exceptions by trying to restart cgminer unless the --no-restart option is used."
  • Provide helper function realloc_strcat to extend arbitrary length arrays based on string length.
  • Use base_work for comparison just for cleanness in __copy_work
  • Remove all static work structs, using the make and free functions.
  • Add pool no. to stale share detected message.
  • Add info about which pool share became stale while resubmitting.
  • Reduce extra slots in the max backlog for ztex to minimise memory waste.
  • Get rid of unused last_work in opencl thread data.
  • Do away with the flaky free_work api in the driver code which would often lose the work data in opencl and simply flush it before exiting the opencl scanhash.
  • Minor work handling restructure, including moving some stratum data from fixed-size buffers to their own heap allocations.
  • opencl: Use new dev_error function for REASON_DEV_NOSTART
  • Provide rudimentary support for the balancing failover strategies with stratum and GBT by switching pools silently on getwork requests.
  • Convert remaining modminer and bfl uses of usleep to nmsleep.
  • Convert libztex to nmsleep where possible.
  • Convert unreliable usleep calls to nmsleep calls in ztex driver.
  • Tidy up device error counts
  • Only increase gpu engine speed by a larger step if the temperature is below hysteresis instead of increasing it to max speed.
  • Convert pool not responding and pool alive message on backup pools to verbose level only since they mean a single failed getwork.
  • Use stratum block change from backup pools as an alternative to longpoll for pools that don't support LP.
  • Round some more static string arrays to 4 byte boundaries.
  • There is no need for the static arrays to be larger than required, so long as they're 4 byte aligned to appease ARM.
  • Hash1 is only used by the CPU mining code and never changes so remove it from the work struct and bypass needing to process the value for all other mining.
2664  Bitcoin / Mining software (miners) / Re: BFGMiner: modular FPGA/GPU & X6500, overclk/fans, GBT, RPC, Linux/PPA/Win 2.9.5 on: December 11, 2012, 03:31:05 AM
NEW VERSION 2.9.5, DECEMBER 11 2012

Just a few minor fixes to make 2.8.8 and 2.9.5 before releasing 2.10.0 (just needs a bit more testing). Not too much to see here.

Human readable changelog:
  • Bug fixes only.

Full changelog
  • Bugfix: Copy share hash to work->hash before doing 4-byte flip required by fulltest
  • driver-ztex: libztex_setFreq() must be called before ztex_releaseFpga()
  • libztex: Make log messages say bitstream when refering to bitstreams
  • Increase FD_SETSIZE to 4096 on Windows
  • Bugfix: Use AC_PROG_CPP in libusb include subdirectory detection for improved portability
  • Bugfix: Free input memory after prioritising pools in TUI
  • Bugfix: Free filename entry for writing config file when done with it
  • Bugfix: Free stratum nonce1 before replacing it with new value on reconnect
2665  Bitcoin / Mining software (miners) / Re: BFGMiner: modular FPGA/GPU & X6500, overclk/fans, GBT, RPC, Linux/PPA/Win 2.9.4 on: December 10, 2012, 10:44:24 PM
When i try to build BFG 2.9.4 on windows i receive the following error. Someone knows how to fix that?

Code:
gcc.exe: error: @CPPFLAG_CURL_STATICLIB@: No such file or directory
This is a bug in your libcurl install. Find libcurl.pc and just remove that @CPPFLAG_CURL_STATICLIB@ from it entirely.
2666  Bitcoin / Bitcoin Discussion / Re: Bitcoin-Qt, bitcoind testing requested! You can help. on: December 10, 2012, 09:50:18 AM
Trying to build bitcoin on an Amazon EC2 instance. I'm using git cloned source.

It compiles fine until this,

Code:
...
g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -I/usr/src/bitcoin/src -I/usr/src/bitcoin/src/obj -DUSE_IPV6=1 -I/usr/src/bitcoin/src/leveldb/include -I/usr/src/bitcoin/src/leveldb/helpers -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/bitcoinrpc.d -o obj/bitcoinrpc.o bitcoinrpc.cpp
g++: internal compiler error: Killed (program cc1plus)
Please submit a full bug report,
with preprocessed source if appropriate.
See <file:///usr/share/doc/gcc-4.6/README.Bugs> for instructions.
make: *** [obj/bitcoinrpc.o] Error 4
Cannot continue now after several attempts. Seems to be tool problem as this did build on my other vps also 12.04.

gcc 4.6.3

My tools installed like this:
sudo apt-get install git htop build-essential libssl-dev libboost-all-dev libdb5.1++-dev

Anyone have ideas how to get around this? thx.

Likely it doesn't have enough memory.
Hmmm. If that's true then it's totally annoying as I built it yesterday on another system with less memory.
Yesterday on 32 bit Ubuntu, 512 MB, VPS and it works. Today on new EC2 instance I'm trying 64 bit, as that's what's recommended now, and it has 612 MB (t1.micro). I copied over blockchain data but cannot copy the program (due to difference 32 -64 bit). Blast it!

I'll have to figure out how to freeze the instance and restart it as a t1.small instance for compiling.
64-bit generally uses up to 2 times as much memory for the same data structures.
2667  Bitcoin / Bitcoin Discussion / Re: Bitcoin-Qt, bitcoind testing requested! You can help. on: December 10, 2012, 09:14:10 AM
Trying to build bitcoin on an Amazon EC2 instance. I'm using git cloned source.

It compiles fine until this,

Code:
...
g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -I/usr/src/bitcoin/src -I/usr/src/bitcoin/src/obj -DUSE_IPV6=1 -I/usr/src/bitcoin/src/leveldb/include -I/usr/src/bitcoin/src/leveldb/helpers -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/bitcoinrpc.d -o obj/bitcoinrpc.o bitcoinrpc.cpp
g++: internal compiler error: Killed (program cc1plus)
Please submit a full bug report,
with preprocessed source if appropriate.
See <file:///usr/share/doc/gcc-4.6/README.Bugs> for instructions.
make: *** [obj/bitcoinrpc.o] Error 4
Cannot continue now after several attempts. Seems to be tool problem as this did build on my other vps also 12.04.

gcc 4.6.3

My tools installed like this:
sudo apt-get install git htop build-essential libssl-dev libboost-all-dev libdb5.1++-dev

Anyone have ideas how to get around this? thx.

Likely it doesn't have enough memory.
2668  Bitcoin / Mining software (miners) / Re: Please help donate 107 BTC for CGMINER support for x6500 fpga(0 still needed) on: December 10, 2012, 03:00:09 AM
Someone might want to update the OP. BFGMiner has had X6500 support since 2.9.0 released in November.
2669  Bitcoin / Mining software (miners) / Re: BFGMiner: modular FPGA/GPU & X6500, overclk/fans, GBT, RPC, Linux/PPA/Win 2.9.4 on: December 08, 2012, 09:59:36 PM
I found the solution mrb wrote to be a bit confusing, and wanted to clean up this code anyway, so I rewrote all these functions in a hopefully more readable/understandable way for 2.10.0: bfab076d (please excuse the accidental libblkmaker change)
Since this change is pretty big, I also (now having a good understanding of the problem) wrote a very simple fix-only for 2.8.x and 2.9.x: 006faac6

Obviously this code could very easily result in lost blocks/shares if it malfunctions, so I would very much appreciate anyone familiar with C and/or block hashing and targets to review this code before I release it. At the bottom of each link, there is a place to leave comments - feel free to post your review there, or even add comments/questions inline the code if that seems more appropriate (if you put your mouse over a line, a blue "+" appears to the left of it - click that). Of course, if you don't have or want a GitHub account, feel free to email/PM/post-here any reviews as well.

Thanks,

Luke
2670  Bitcoin / Mining software (miners) / Re: [ANN] Eloipool - FAST Python3 pool server software - GBT/stratum/dyntarget/proxy on: December 08, 2012, 06:16:47 AM
Upon further investigation, I am 99% certain we're looking at a BFGMiner bug here. There are two functions which both recalculate the share/block hash and compare it to a target: fulltest (util.c) and regeneratehash (miner.c). It seems that at least on little-endian, these two functions produce opposite endians for each 32-bit chunk of the hash; in cases where the target is presumably not met, the shares are fed through the share_diff function (responsible for updating the best block) with the opposite endian than it expects. This causes your best block to report something erroneous (or at least it seems this is where the error is). What needs to be done now, is to audit the endian handling in these two functions to determine which one is correct and ideally unify the code into a single function. Hopefully I'll get to that within the next week, but if you want to take a stab at it, feel free... Wink
2671  Bitcoin / Mining software (miners) / Re: [ANN] Eloipool - FAST Python3 pool server software - GBT/stratum/dyntarget/proxy on: December 08, 2012, 05:44:04 AM
By the way, what is the use of GotWorkURI? Shares found from getmemorypool work cannot be submitted via getwork, or can they?
GotWorkURI is for merged mining. gotwork != getwork
2672  Bitcoin / Mining software (miners) / Re: [ANN] Eloipool - FAST Python3 pool server software - GBT/stratum/dyntarget/proxy on: December 08, 2012, 05:01:42 AM
I solved a block today. I know it because bfgminer currently shows "Best share: 19.5M". However eloipool silently ignored the solved block. There goes 25 BTC...
I doubt Eloipool was the problem in this case. The "best share" code is much newer, and there have been reports of similar behaviour from altcoin solo mining; unfortunately, I don't know any good way to reproduce it. Did you happen to be running BFGMiner with a debug log by any chance? There might be some useful info in there...

Furthermore, it is almost impossible to do a post-mortem analysis. I found out that checkShare() in eloipool.py has buggy logging code, so pretty much no useful information has been logged. Indeed, the checkShare.logger object has a default level of 'WARNING', so logfunc() below will never log INFO and DEBUG messages:
Eloipool's code only configures loggers for DEBUG or INFO... For post-mortem analysis on the pool side, check out the RBFs variable (only kept in memory!) and bitcoind's debug.log. Of course, that's assuming the share ever got to Eloipool, which I suspect isn't the case since you apparently didn't see the info logging from it.
2673  Bitcoin / Mining software (miners) / Re: Decentralized mining protocol standard: getblocktemplate (ASIC ready!) on: December 07, 2012, 04:17:44 AM
Bottom line is still: Kano is a clueless liar.
2674  Bitcoin / Bitcoin Discussion / Re: Bitcoin-Qt, bitcoind testing requested! You can help. on: December 07, 2012, 02:01:29 AM
That makes more sense. I dislike doing things manually so I'm trying to make ebuilds to do the compiling and installation for me, but it was difficult to know which branches/repositories to point them at.
There are already ebuilds. layman -a bitcoin to get more (including 9999 for latest git master).
2675  Bitcoin / Bitcoin Discussion / Re: Bitcoin-Qt, bitcoind testing requested! You can help. on: December 07, 2012, 01:06:49 AM
The latest bleeding-edge code is always in the GitHub master branch: https://github.com/bitcoin/bitcoin/
What's confusing me is how there are a couple 0.6.x branches, and no 0.7.x branches at all. If some code has been merged into master which will become 0.8 and development is still going on for 0.7 where are those commits being merged? Into the 0.6.3 branch?
The stable/backport branches are maintained over at Gitorious: http://gitorious.org/bitcoin/bitcoind-stable/
2676  Bitcoin / Bitcoin Discussion / Re: Bitcoin-Qt, bitcoind testing requested! You can help. on: December 07, 2012, 12:52:52 AM
Average users can help bitcoin, too.

Gavin is looking for people to help test version 0.7.2, the next bugfix version of Bitcoin-Qt / bitcoind.


If you are more adventurous,
the much improved, faster next version (0.8 ) needs lots of testing, too.  Especially on Windows.


Where exactly is 0.8? I looked everywhere in the bitcoin respository on Github and saw no sign of such a branch.
The latest bleeding-edge code is always in the GitHub master branch: https://github.com/bitcoin/bitcoin/
2677  Economy / Exchanges / Re: Bitcoin-Central, first exchange licensed to operate as a bank. This is HUGE on: December 06, 2012, 06:10:04 PM
I will register as soon as you get the debit card Smiley
Actually, a real Bitcoin debit card (not the prepaid credit card that BitInstant calls a debit card...) would be awesome.

That is, balance is always in Bitcoins; deposit cash at an ATM to "buy" bitcoins automatically, or withdraw/spend it to "sell".

Davout, the site mentions a lack of fees to deposit MtGox codes, but I don't see any way to actually do it?
2678  Bitcoin / Mining software (miners) / Re: [ANN] Eloipool - FAST Python3 pool server software - GBT/stratum/dyntarget/proxy on: December 06, 2012, 12:28:21 PM
Hey,

I am not the best in git and linux, can you tell me, how to revert the last commit?
I have just clone the git from github, but it is very old I think.
Eloipool is in Gitorious, not GitHub...

To simply pull the top commit off:
Code:
git reset --hard HEAD^
2679  Bitcoin / Mining software (miners) / Re: CGMINER GPU FPGA overc monit fanspd RPC stratum linux/windows/osx/mip/r-pi 2.9.6 on: December 06, 2012, 04:04:59 AM
Longstanding bug on windows for when network goes down; it's my secret way to get people to move to linux.

Obviously not the case, but anyway I've not been able to reproduce it myself so must be some combination of windows or other issue. You could always try helping debug it following instructions in here:
http://ck.kolivas.org/apps/cgminer/debug/

I suspect it's just the libcurl implementation on windows... which would be bad news since it won't be something I can personally fix.
One might note that I fixed this in BFGMiner a while ago, thanks to much debugging help from jddebug. It's not the most elegant fix, but it does do the job.
2680  Bitcoin / Development & Technical Discussion / Re: 0.7.2rc2 needs a little testing on: December 06, 2012, 02:17:57 AM
If i'm running sipa's pre0.8 version, can i "upgrade" and test this ?
No, that would be a downgrade. It should still "work", but it won't use the pre0.8 blockchain and will download a 0.4-0.7-compatible one.
Pages: « 1 ... 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 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 ... 247 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!