Bitcoin Forum
May 05, 2024, 11:43:37 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Warning: One or more bitcointalk.org users have reported that they strongly believe that the creator of this topic is a scammer. (Login to see the detailed trust ratings.) While the bitcointalk.org administration does not verify such claims, you should proceed with extreme caution.
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 28 29 30 [31] 32 33 34 »
  Print  
Author Topic: [ANN] [UFO] ▲▲ UFO Coin [In Exchanges] Interplanetary Crypto Currency ▲▲  (Read 60769 times)
captainproton
Newbie
*
Offline Offline

Activity: 39
Merit: 0


View Profile WWW
April 18, 2014, 10:19:38 AM
 #601

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.
1714952617
Hero Member
*
Offline Offline

Posts: 1714952617

View Profile Personal Message (Offline)

Ignore
1714952617
Reply with quote  #2

1714952617
Report to moderator
1714952617
Hero Member
*
Offline Offline

Posts: 1714952617

View Profile Personal Message (Offline)

Ignore
1714952617
Reply with quote  #2

1714952617
Report to moderator
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
daimyo
Hero Member
*****
Offline Offline

Activity: 521
Merit: 500


UFO


View Profile
April 18, 2014, 10:52:15 AM
 #602

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

Value does not exist outside of human consciousness
Spekske
Hero Member
*****
Offline Offline

Activity: 673
Merit: 506


View Profile WWW
April 19, 2014, 09:16:50 PM
 #603

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

daimyo
Hero Member
*****
Offline Offline

Activity: 521
Merit: 500


UFO


View Profile
April 19, 2014, 10:24:48 PM
 #604

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

Value does not exist outside of human consciousness
griffitsj
Full Member
***
Offline Offline

Activity: 215
Merit: 100


View Profile
April 20, 2014, 05:18:46 AM
 #605

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.
daimyo
Hero Member
*****
Offline Offline

Activity: 521
Merit: 500


UFO


View Profile
April 20, 2014, 07:08:12 AM
 #606

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.

Value does not exist outside of human consciousness
Spekske
Hero Member
*****
Offline Offline

Activity: 673
Merit: 506


View Profile WWW
April 20, 2014, 07:43:36 AM
 #607

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,
    ),


CrayjeksAjek
Full Member
***
Offline Offline

Activity: 186
Merit: 100


View Profile WWW
April 20, 2014, 09:37:40 PM
 #608

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?

braxx
Sr. Member
****
Offline Offline

Activity: 392
Merit: 250


View Profile
April 21, 2014, 12:18:41 AM
 #609

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
daimyo
Hero Member
*****
Offline Offline

Activity: 521
Merit: 500


UFO


View Profile
April 21, 2014, 07:20:40 AM
 #610

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.

Value does not exist outside of human consciousness
Spekske
Hero Member
*****
Offline Offline

Activity: 673
Merit: 506


View Profile WWW
April 21, 2014, 07:31:15 AM
 #611

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 ?

daimyo
Hero Member
*****
Offline Offline

Activity: 521
Merit: 500


UFO


View Profile
April 21, 2014, 06:10:59 PM
 #612

does anyone know the cryptocoinexplorer guys? The http://ufo.cryptocoinexplorer.com/ has been down for 2 days now

Value does not exist outside of human consciousness
CrayjeksAjek
Full Member
***
Offline Offline

Activity: 186
Merit: 100


View Profile WWW
April 22, 2014, 06:32:51 AM
 #613

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

Spekske
Hero Member
*****
Offline Offline

Activity: 673
Merit: 506


View Profile WWW
April 22, 2014, 06:48:25 PM
 #614

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 ?

DrReaper
Full Member
***
Offline Offline

Activity: 190
Merit: 100


View Profile
April 22, 2014, 07:47:57 PM
 #615

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

cgminer.exe --scrypt -o http://dutchpool.org:19720 -u Bsc76ntNcZXVrGfTCJPMVfjHVH2HY4GS8h -p whatever

Try that first then add one thing at a time until it works
Spekske
Hero Member
*****
Offline Offline

Activity: 673
Merit: 506


View Profile WWW
April 25, 2014, 09:27:26 AM
 #616

http://dutchpool.org will be rebooting at 12.00 (GMT+2) to complete the move to a faster server, fee for all pools will be set to 0%, please reconnect your miners after the reboot, the process should be finished around 12.30 (GMT+2).

Spekske
Hero Member
*****
Offline Offline

Activity: 673
Merit: 506


View Profile WWW
April 25, 2014, 05:30:05 PM
 #617

Is something wrong with the website and the blockchain ?

Spekske
Hero Member
*****
Offline Offline

Activity: 673
Merit: 506


View Profile WWW
April 25, 2014, 05:57:47 PM
 #618

Is something wrong with the website and the blockchain ?

nothing that I know of. Whats bothering you?
hmmmm weird, now the site is loading Smiley but the blockfinds seem incredibly slow and the time is offset every time the pool finds a block, weird stuff  Roll Eyes

Spekske
Hero Member
*****
Offline Offline

Activity: 673
Merit: 506


View Profile WWW
April 25, 2014, 06:11:33 PM
 #619

Is something wrong with the website and the blockchain ?

nothing that I know of. Whats bothering you?
hmmmm weird, now the site is loading Smiley but the blockfinds seem incredibly slow and the time is offset every time the pool finds a block, weird stuff  Roll Eyes
Seems to be running again now, time also looks normal on blocks found Smiley

itos (OP)
Full Member
***
Offline Offline

Activity: 560
Merit: 105



View Profile
April 27, 2014, 04:17:56 PM
 #620

I gave control of Github to daimyo. As I said earlier I don't have any interest on this coin anymore and I am out of crypto world. If you want to modify new stuff on main post make a new thread.
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 28 29 30 [31] 32 33 34 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!