Pages:
Author

Topic: [ANN] [UFO] ▲▲ UFO Coin [In Exchanges] Interplanetary Crypto Currency ▲▲ - page 4. (Read 60784 times)

hero member
Activity: 673
Merit: 506
When using dutchpool my cgminer crashes. Version 3.7.0
Here is my .bat file:
cgminer.exe --scrypt -Q 0 -o http://dutchpool.org:19720 -u Bsc76ntNcZXVrGfTCJPMVfjHVH2HY4GS8h -p whatever -I 17
-w 128 --thread-concurrency 6144 --scan-time 1 --expiry 1

Have also tried w/o -Q 0 --scan-time 1 --expiry 1 and still crashes.
Anyone know whats up? Is it the version Im using?
What kind of card are you using ?

2 HD Radeon 6850's
The most common reason would be your memory and gpu engine setings, could you post your cgminer.conf file ?
full member
Activity: 186
Merit: 100
When using dutchpool my cgminer crashes. Version 3.7.0
Here is my .bat file:
cgminer.exe --scrypt -Q 0 -o http://dutchpool.org:19720 -u Bsc76ntNcZXVrGfTCJPMVfjHVH2HY4GS8h -p whatever -I 17
-w 128 --thread-concurrency 6144 --scan-time 1 --expiry 1

Have also tried w/o -Q 0 --scan-time 1 --expiry 1 and still crashes.
Anyone know whats up? Is it the version Im using?
What kind of card are you using ?

2 HD Radeon 6850's
hero member
Activity: 521
Merit: 500
UFO
does anyone know the cryptocoinexplorer guys? The http://ufo.cryptocoinexplorer.com/ has been down for 2 days now
hero member
Activity: 673
Merit: 506
When using dutchpool my cgminer crashes. Version 3.7.0
Here is my .bat file:
cgminer.exe --scrypt -Q 0 -o http://dutchpool.org:19720 -u Bsc76ntNcZXVrGfTCJPMVfjHVH2HY4GS8h -p whatever -I 17
-w 128 --thread-concurrency 6144 --scan-time 1 --expiry 1

Have also tried w/o -Q 0 --scan-time 1 --expiry 1 and still crashes.
Anyone know whats up? Is it the version Im using?
What kind of card are you using ?
hero member
Activity: 521
Merit: 500
UFO
When using dutchpool my cgminer crashes. Version 3.7.0
Here is my .bat file:
cgminer.exe --scrypt -Q 0 -o http://dutchpool.org:19720 -u Bsc76ntNcZXVrGfTCJPMVfjHVH2HY4GS8h -p whatever -I 17
-w 128 --thread-concurrency 6144 --scan-time 1 --expiry 1

Have also tried w/o -Q 0 --scan-time 1 --expiry 1 and still crashes.
Anyone know whats up? Is it the version Im using?

timeout /t 30
setx GPU_MAX_ALLOC_PERCENT 100
setx GPU_USE_SYNC_OBJECTS 1
cgminer --scrypt -Q 0 -w 256 --thread-concurrency 20000 -I 18 --lookup-gap 2 --no-submit-stale -g 1 -o http://dutchpool.org:19720 -u address -p whatever --scan-time 1
--expiry 1             

cgminer 3.7.2 here working fine. It does crash occasionally but for now is keeping up the good work.
sr. member
Activity: 392
Merit: 250
have you tried adding pause as the last line in your bat-file?
then the window would not disapear:

example:
Code:

cgminer.exe --scrypt -Q 0 -o http://dutchpool.org:19720 -u Bsc76ntNcZXVrGfTCJPMVfjHVH2HY4GS8h -p whatever -I 17
-w 128 --thread-concurrency 6144 --scan-time 1 --expiry 1
pause
full member
Activity: 186
Merit: 100
When using dutchpool my cgminer crashes. Version 3.7.0
Here is my .bat file:
cgminer.exe --scrypt -Q 0 -o http://dutchpool.org:19720 -u Bsc76ntNcZXVrGfTCJPMVfjHVH2HY4GS8h -p whatever -I 17
-w 128 --thread-concurrency 6144 --scan-time 1 --expiry 1

Have also tried w/o -Q 0 --scan-time 1 --expiry 1 and still crashes.
Anyone know whats up? Is it the version Im using?
hero member
Activity: 673
Merit: 506
P2pool mining is available at http://dutchpool.org:19720 , almost 5MH/s mining currently. And if anyone is interested in setting up their own p2pool-node, here are the parameters you'll need to run it:

p2pool/networks.py

ufo=math.Object(
        PARENT=networks.nets['ufo'],
        SHARE_PERIOD=15, # seconds target spacing
        CHAIN_LENGTH=12*60*60//15, # shares
        REAL_CHAIN_LENGTH=12*60*60//15, # shares
        TARGET_LOOKBEHIND=20, # shares coinbase maturity
        SPREAD=50, # blocks
        IDENTIFIER='fc656266636f696e'.decode('hex'),
        PREFIX='fe636e696e6c656a'.decode('hex'),
        P2P_PORT=18720,
        MIN_TARGET=0,
        MAX_TARGET=2**256//2**20 - 1,
        PERSIST=False,
        WORKER_PORT=19720,
        BOOTSTRAP_ADDRS='dutchpool.org'.split(' '),
        ANNOUNCE_CHANNEL='#p2pool-alt',
        VERSION_CHECK=lambda v: True,
    ),

p2pool/bitcoin/networks.py

ufo=math.Object(
        P2P_PREFIX='fcd9b7dd'.decode('hex'), #pchmessagestart
        P2P_PORT=9887,
        ADDRESS_VERSION=27, #pubkey_address
        RPC_PORT=9888,
        RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
            'ufo address' in (yield bitcoind.rpc_help()) and
            not (yield bitcoind.rpc_getinfo())['testnet']
        )),
        SUBSIDY_FUNC=lambda height: 5000*100000000,
        POW_FUNC=lambda data: pack.IntType(256).unpack(__import__('ltc_scrypt').getPoWHash(data)),
        BLOCK_PERIOD=90, # s
        SYMBOL='UFO',
        CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'ufo')
      if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/ufo/')
      if platform.system() == 'Darwin' else os.path.expanduser('~/.ufo'), 'ufo.conf'),
        BLOCK_EXPLORER_URL_PREFIX='http://ufo.cryptocoinexplorer.com/block/',
        ADDRESS_EXPLORER_URL_PREFIX='http://ufo.cryptocoinexplorer.com/address/',
        TX_EXPLORER_URL_PREFIX='http://ufo.cryptocoinexplorer.com/transaction/',
        SANE_TARGET_RANGE=(2**256//1000000000 - 1, 2**256//1000 - 1),
        DUMB_SCRYPT_DIFF=2**16,
        DUST_THRESHOLD=0.03e8,
    ),

hero member
Activity: 521
Merit: 500
UFO
Look forward to a relaunch with a new algo (X11?).  I'd like to mine some coins in the meantime but something is broken with the network - only 1 connection in the wallet. 

I am using a fairly recent node list from ufo site but still only 1 connection and I don't think we can mine in this situation.  ufo.notnull.org has not found a block in days.

Do not use notnull. Dutchpool is working and Cmine is re-opening today. We are preparing additional nodes. I will post a list when they are up.
full member
Activity: 215
Merit: 100
Look forward to a relaunch with a new algo (X11?).  I'd like to mine some coins in the meantime but something is broken with the network - only 1 connection in the wallet. 

I am using a fairly recent node list from ufo site but still only 1 connection and I don't think we can mine in this situation.  ufo.notnull.org has not found a block in days.
hero member
Activity: 521
Merit: 500
UFO
http://dutchpool.org:19720 p2pool has just been updated with a new and cleaner looking statistics page, the blocknumbers are now also showing the correct number and time  Grin

Thats great! I will have a couple of more nodes shortly
hero member
Activity: 673
Merit: 506
http://dutchpool.org:19720 p2pool has just been updated with a new and cleaner looking statistics page, the blocknumbers are now also showing the correct number and time  Grin
hero member
Activity: 521
Merit: 500
UFO
we are trying to figure out how to protect the old coins. Otherwise just a UFO coin would have been launched already. Hoping that the coins will remain. Just new algo

I'm no expert on crypto currencies, in fact I know nothing on the technical side! But... perhaps some form of exchange where you could transfer your current UFO to UFO2? I'm sure there is a reason why you can't do that but it seems simple enough.

Good guess. Thats already on the list Smiley It needs some testing
newbie
Activity: 39
Merit: 0
we are trying to figure out how to protect the old coins. Otherwise just a UFO coin would have been launched already. Hoping that the coins will remain. Just new algo

I'm no expert on crypto currencies, in fact I know nothing on the technical side! But... perhaps some form of exchange where you could transfer your current UFO to UFO2? I'm sure there is a reason why you can't do that but it seems simple enough.
full member
Activity: 190
Merit: 100
The official website states coins before 4/7 will be included in the new block chain. That is why it's so easy to mine right now. It maybe a waste of time.

POS coins are fun. There is nothing like seeing my Ghost wallet popup with a free twenty coins every once in a while. At the same time it maybe a programming nightmare to get it all to work.
hero member
Activity: 521
Merit: 500
UFO
we are trying to figure out how to protect the old coins. Otherwise just a UFO coin would have been launched already. Hoping that the coins will remain. Just new algo
hero member
Activity: 673
Merit: 506
hmm strange... I thought the dutchpool closed its ufo pool some days ago now
Some p2pool nodes on http://dutchpool.org have been offline temporarily to add a second server, but UFO is still there for those in search of some coins. There will be more coins added soon, including scrypt-N and others if I'm informed correctly.

You are correct... maybe it was me. Is it still paying well? Smiley
I've mined yesterday for about 3 hours and got just over 400000 coins, I guess that's not too bad  Grin

LOL, not AT ALL Cheesy

the only thing that pisses me off with p2p pools is that they bloat the wallet pretty bad
I would probably be mining some more coins, but what will happen to those coins when UFO will be re-launched using different algo ?
hero member
Activity: 521
Merit: 500
UFO
hmm strange... I thought the dutchpool closed its ufo pool some days ago now
Some p2pool nodes on http://dutchpool.org have been offline temporarily to add a second server, but UFO is still there for those in search of some coins. There will be more coins added soon, including scrypt-N and others if I'm informed correctly.

You are correct... maybe it was me. Is it still paying well? Smiley
I've mined yesterday for about 3 hours and got just over 400000 coins, I guess that's not too bad  Grin

LOL, not AT ALL Cheesy

the only thing that pisses me off with p2p pools is that they bloat the wallet pretty bad
hero member
Activity: 673
Merit: 506
hmm strange... I thought the dutchpool closed its ufo pool some days ago now
Some p2pool nodes on http://dutchpool.org have been offline temporarily to add a second server, but UFO is still there for those in search of some coins. There will be more coins added soon, including scrypt-N and others if I'm informed correctly.

You are correct... maybe it was me. Is it still paying well? Smiley
I've mined yesterday for about 3 hours and got just over 400000 coins, I guess that's not too bad  Grin
hero member
Activity: 521
Merit: 500
UFO
hmm strange... I thought the dutchpool closed its ufo pool some days ago now
Some p2pool nodes on http://dutchpool.org have been offline temporarily to add a second server, but UFO is still there for those in search of some coins. There will be more coins added soon, including scrypt-N and others if I'm informed correctly.

You are correct... maybe it was me. Is it still paying well? Smiley
Pages:
Jump to: