Bitcoin Forum
April 18, 2024, 01:52:44 AM *
News: Latest Bitcoin Core release: 26.0 [Torrent]
 
   Home   Help Search Login Register More  
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 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 »
  Print  
Author Topic: [ANN] [SKC] Skeincoin 0.9.3.1 | Skein-SHA2  (Read 161507 times)
reorder
Sr. Member
****
Offline Offline

Activity: 462
Merit: 250


View Profile
January 24, 2014, 10:00:09 AM
 #741

well here is my pool website
http://www.skcmine.tk
but I can't get stratum to support the skein hash yet
any help would be appreciated  Wink
you can make an account and start mining and see your normal hashrate
but it won't do anything and you won't get shares  Sad
You have to plug skeinhash in the PoW check here: https://github.com/ahmedbodi/stratum-mining/blob/master/lib/template_registry.py#L237.

You can find the python skeinhash implementation in my miner, native+ctypes in the first released version or pure python in the latest one.
https://github.com/iamasupernova/poclbm-skc
python setup.py install
Code:
running install
running build
running build_ext
building 'skeinhash' extension
error: unknown file type '.py' (from 'skeinhash.py')
what am I doing wrong in setup.py?
You do not need to build it, just copy skeinhash.py, skein.py, threefish.py and util_numpy.py to your stratum-mining instance (you will also need numpy installed in your python). Then, use the skeinhash.skeinhash function to check the PoW.
1713405164
Hero Member
*
Offline Offline

Posts: 1713405164

View Profile Personal Message (Offline)

Ignore
1713405164
Reply with quote  #2

1713405164
Report to moderator
1713405164
Hero Member
*
Offline Offline

Posts: 1713405164

View Profile Personal Message (Offline)

Ignore
1713405164
Reply with quote  #2

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

Posts: 1713405164

View Profile Personal Message (Offline)

Ignore
1713405164
Reply with quote  #2

1713405164
Report to moderator
1713405164
Hero Member
*
Offline Offline

Posts: 1713405164

View Profile Personal Message (Offline)

Ignore
1713405164
Reply with quote  #2

1713405164
Report to moderator
1713405164
Hero Member
*
Offline Offline

Posts: 1713405164

View Profile Personal Message (Offline)

Ignore
1713405164
Reply with quote  #2

1713405164
Report to moderator
surfer43
Sr. Member
****
Offline Offline

Activity: 560
Merit: 250


"Trading Platform of The Future!"


View Profile
January 24, 2014, 10:30:29 AM
 #742

well here is my pool website
http://www.skcmine.tk
but I can't get stratum to support the skein hash yet
any help would be appreciated  Wink
you can make an account and start mining and see your normal hashrate
but it won't do anything and you won't get shares  Sad
You have to plug skeinhash in the PoW check here: https://github.com/ahmedbodi/stratum-mining/blob/master/lib/template_registry.py#L237.
Code:
elif settings.COINDAEMON_ALGO == 'skeinhash':
                hash_bin = skeinhash.skeinhash(''.join([ header_bin[i*4:i*4+4][::-1] for i in range(0, 20) ]))
Like that?
And do those .py files go in stratum-mining/externals/skeinhash
?
reorder
Sr. Member
****
Offline Offline

Activity: 462
Merit: 250


View Profile
January 24, 2014, 10:34:42 AM
 #743

well here is my pool website
http://www.skcmine.tk
but I can't get stratum to support the skein hash yet
any help would be appreciated  Wink
you can make an account and start mining and see your normal hashrate
but it won't do anything and you won't get shares  Sad
You have to plug skeinhash in the PoW check here: https://github.com/ahmedbodi/stratum-mining/blob/master/lib/template_registry.py#L237.
Code:
elif settings.COINDAEMON_ALGO == 'skeinhash':
                hash_bin = skeinhash.skeinhash(''.join([ header_bin[i*4:i*4+4][::-1] for i in range(0, 20) ]))
Like that?
And do those .py files go in stratum-mining/externals/skeinhash
?
I'd suggest putting them in the same directory where your template_registry.py is at first, so you can import the module with just 'import skeinhash'. If you are going to move them to another dir later, you will probably have to read this: http://docs.python.org/2/tutorial/modules.html
feeleep
Legendary
*
Offline Offline

Activity: 1197
Merit: 1000


View Profile WWW
January 24, 2014, 10:36:35 AM
 #744

well here is my pool website
http://www.skcmine.tk
but I can't get stratum to support the skein hash yet
any help would be appreciated  Wink
you can make an account and start mining and see your normal hashrate
but it won't do anything and you won't get shares  Sad
You have to plug skeinhash in the PoW check here: https://github.com/ahmedbodi/stratum-mining/blob/master/lib/template_registry.py#L237.
Code:
elif settings.COINDAEMON_ALGO == 'skeinhash':
                hash_bin = skeinhash.skeinhash(''.join([ header_bin[i*4:i*4+4][::-1] for i in range(0, 20) ]))
Like that?
And do those .py files go in stratum-mining/externals/skeinhash
?

here you have my implementation - just unzip and run python setup.py install

http://www76.zippyshare.com/v/25863891/file.html

surfer43
Sr. Member
****
Offline Offline

Activity: 560
Merit: 250


"Trading Platform of The Future!"


View Profile
January 24, 2014, 10:40:41 AM
 #745

well here is my pool website
http://www.skcmine.tk
but I can't get stratum to support the skein hash yet
any help would be appreciated  Wink
you can make an account and start mining and see your normal hashrate
but it won't do anything and you won't get shares  Sad
You have to plug skeinhash in the PoW check here: https://github.com/ahmedbodi/stratum-mining/blob/master/lib/template_registry.py#L237.
Code:
elif settings.COINDAEMON_ALGO == 'skeinhash':
                hash_bin = skeinhash.skeinhash(''.join([ header_bin[i*4:i*4+4][::-1] for i in range(0, 20) ]))
Like that?
And do those .py files go in stratum-mining/externals/skeinhash
?
I'd suggest putting them in the same directory where your template_registry.py is at first, so you can import the module with just 'import skeinhash'. If you are going to move them to another dir later, you will probably have to read this: http://docs.python.org/2/tutorial/modules.html
from util_numpy import add64, bigint, bytelist, bytes2words, imap, izip, sub64, \
exceptions.ImportError: No module named util_numpy

util_numpy.py is in the same directory
surfer43
Sr. Member
****
Offline Offline

Activity: 560
Merit: 250


"Trading Platform of The Future!"


View Profile
January 24, 2014, 11:06:55 AM
 #746

well here is my pool website
http://www.skcmine.tk
but I can't get stratum to support the skein hash yet
any help would be appreciated  Wink
you can make an account and start mining and see your normal hashrate
but it won't do anything and you won't get shares  Sad
You have to plug skeinhash in the PoW check here: https://github.com/ahmedbodi/stratum-mining/blob/master/lib/template_registry.py#L237.
Code:
elif settings.COINDAEMON_ALGO == 'skeinhash':
                hash_bin = skeinhash.skeinhash(''.join([ header_bin[i*4:i*4+4][::-1] for i in range(0, 20) ]))
Like that?
And do those .py files go in stratum-mining/externals/skeinhash
?
here you have my implementation - just unzip and run python setup.py install

http://www76.zippyshare.com/v/25863891/file.html
unzip:
Code:
End-of-central-directory signature not found.  Either this file is not
  a zipfile, or it constitutes one disk of a multi-part archive.  In the
  latter case the central directory and zipfile comment will be found on
  the last disk(s) of this archive.
unzip:  cannot find zipfile directory in one of skein-hash.zip or
        skein-hash.zip.zip, and cannot find skein-hash.zip.ZIP, period.
ugh too many errors lol
but gui unzips it fine  Huh
feeleep
Legendary
*
Offline Offline

Activity: 1197
Merit: 1000


View Profile WWW
January 24, 2014, 11:08:37 AM
 #747

maybe this one?

http://www22.zippyshare.com/v/10814865/file.html

surfer43
Sr. Member
****
Offline Offline

Activity: 560
Merit: 250


"Trading Platform of The Future!"


View Profile
January 24, 2014, 11:13:32 AM
 #748

um...
bzip2 -d skein.bz2
bzip2: skein.bz2 is not a bzip2 file.
feeleep
Legendary
*
Offline Offline

Activity: 1197
Merit: 1000


View Profile WWW
January 24, 2014, 11:14:41 AM
 #749

um...
bzip2 -d skein.bz2
bzip2: skein.bz2 is not a bzip2 file.

tar -xjvf skein.bz2

?

surfer43
Sr. Member
****
Offline Offline

Activity: 560
Merit: 250


"Trading Platform of The Future!"


View Profile
January 24, 2014, 11:16:22 AM
 #750

bzip2: (stdin) is not a bzip2 file.
tar: Child returned status 2
tar: Error is not recoverable: exiting now

EDIT: maybe wget is the culprit...
ugh will I have to set up ftp? lol
surfer43
Sr. Member
****
Offline Offline

Activity: 560
Merit: 250


"Trading Platform of The Future!"


View Profile
January 24, 2014, 12:09:39 PM
 #751

well here is my pool website
http://www.skcmine.tk
but I can't get stratum to support the skein hash yet
any help would be appreciated  Wink
you can make an account and start mining and see your normal hashrate
but it won't do anything and you won't get shares  Sad
You have to plug skeinhash in the PoW check here: https://github.com/ahmedbodi/stratum-mining/blob/master/lib/template_registry.py#L237.
Code:
elif settings.COINDAEMON_ALGO == 'skeinhash':
                hash_bin = skeinhash.skeinhash(''.join([ header_bin[i*4:i*4+4][::-1] for i in range(0, 20) ]))
Like that?
And do those .py files go in stratum-mining/externals/skeinhash
?
I'd suggest putting them in the same directory where your template_registry.py is at first, so you can import the module with just 'import skeinhash'. If you are going to move them to another dir later, you will probably have to read this: http://docs.python.org/2/tutorial/modules.html
from util_numpy import add64, bigint, bytelist, bytes2words, imap, izip, sub64, \
exceptions.ImportError: No module named util_numpy

util_numpy.py is in the same directory
do any of you know what to do for this?

I can't get the zip or bz2 folders feeleep sent me.
madjihad
Full Member
***
Offline Offline

Activity: 227
Merit: 260



View Profile
January 24, 2014, 01:07:04 PM
 #752

well here is my pool website
]http://www.[Suspicious link removed]
but I can't get stratum to support the skein hash yet
any help would be appreciated  Wink
you can make an account and start mining and see your normal hashrate
but it won't do anything and you won't get shares  Sad
You have to plug skeinhash in the PoW check here: https://github.com/ahmedbodi/stratum-mining/blob/master/lib/template_registry.py#L237.
Code:
elif settings.COINDAEMON_ALGO == 'skeinhash':
                hash_bin = skeinhash.skeinhash(''.join([ header_bin[i*4:i*4+4][::-1] for i in range(0, 20) ]))
Like that?
And do those .py files go in stratum-mining/externals/skeinhash
?
I'd suggest putting them in the same directory where your template_registry.py is at first, so you can import the module with just 'import skeinhash'. If you are going to move them to another dir later, you will probably have to read this: http://docs.python.org/2/tutorial/modules.html
from util_numpy import add64, bigint, bytelist, bytes2words, imap, izip, sub64, \
exceptions.ImportError: No module named util_numpy

util_numpy.py is in the same directory
do any of you know what to do for this?

I can't get the zip or bz2 folders feeleep sent me.

Try this: https://github.com/reorder/poclbm-skc/blob/master/util_numpy.py
Calhil
Full Member
***
Offline Offline

Activity: 182
Merit: 100


View Profile
January 24, 2014, 05:39:45 PM
 #753

do any of you know what to do for this?

I can't get the zip or bz2 folders feeleep sent me.
Works fine for me  Roll Eyes
Code:
tar xvf skein.bz2

BLC & SKC node: addnode=192.3.171.213
BLC: BcaLHiLk74XXSZdebHQY8b3CaoEBLaPtoV
surfer43
Sr. Member
****
Offline Offline

Activity: 560
Merit: 250


"Trading Platform of The Future!"


View Profile
January 24, 2014, 05:49:56 PM
 #754

Am I not getting any shares because I only have 1 MH/S? I installed the python skein hash that feeleep gave me...
emu
Member
**
Offline Offline

Activity: 69
Merit: 10

stupidity manager


View Profile
January 24, 2014, 06:27:30 PM
 #755

I know it sounds stupid, but it's about humans, so that's right:

how about to change the logo, so that it is a snake? same curls, but a snake. means has a head biting its own tail. means eyes. means ooooooh looooky it's an animal, I want that one, and ooooh look great, it's a snake, I'm a man, I don't like kittey and dogcoins, I want a manly snake coin.

yes, it's propaganda, but it is misterioushly and might be more grippy than just some logo. guys/gals? what'u think? I can do a draft if you think it's worth a try. don't want to change a lot, don't like snakes, but think it's one step to more community interest/support. yes I know, skein is about a string and not about a snake ^^ Tongue

if you want your SKC in good hands: SXVBoZJWahdVNZsYqjdF3V25hSWDvNaoDn
surfer43
Sr. Member
****
Offline Offline

Activity: 560
Merit: 250


"Trading Platform of The Future!"


View Profile
January 24, 2014, 06:36:11 PM
 #756

Ok I calculated my measly CPU will get 1/10 share per block (if the shares are the same amount of work for skc.coinmine.pl)...
but when the block is found is the work discarded making it extremely unlikely for me to get shares?
does someone with more hashing power want to test my pool?
skcmine.tk
daemonfox
Hero Member
*****
Offline Offline

Activity: 630
Merit: 500



View Profile
January 24, 2014, 06:39:39 PM
 #757

Ok I calculated my measly CPU will get 1/10 share per block (if the shares are the same amount of work for skc.coinmine.pl)...
but when the block is found is the work discarded making it extremely unlikely for me to get shares?
does someone with more hashing power want to test my pool?
skcmine.tk

Token expired, please try again upon registration

H
               
                    ¦¦¦                 
            ¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦         
          ¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦       
        ¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦         
      ¦¦¦¦¦¦¦¦¦           ¦           
     ¦¦¦¦¦¦¦¦                     ¦¦   
    ¦¦¦¦¦¦¦    ¦¦¦¦¦¦¦¦¦¦¦        ¦¦¦¦ 
   ¦¦¦¦¦¦¦   ¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦    ¦¦¦¦¦¦
   ¦¦¦¦¦¦   ¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦    ¦¦¦¦¦  
   ¦¦¦¦¦    ¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦   ¦¦¦¦¦¦ 
  ¦¦¦¦¦¦   ¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦   ¦¦¦¦¦¦ 
  ¦¦¦¦¦¦   ¦¦¦¦¦¦¦¦              ¦¦¦¦¦¦
   ¦¦¦¦¦ ¦¦¦¦¦¦   ¦¦¦¦¦¦¦¦¦¦¦    ¦¦¦¦¦¦
   ¦¦¦¦¦¦¦¦¦  ¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦    ¦¦¦¦¦ 
   ¦¦¦¦¦¦¦   ¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦    ¦¦¦¦¦¦ 
    ¦¦¦¦¦       ¦¦¦¦¦¦¦¦¦¦     ¦¦¦¦¦¦ 
     ¦¦                      ¦¦¦¦¦¦¦   
              ¦           ¦¦¦¦¦¦¦¦¦   
           ¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦     
          ¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦       
             ¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦          
                         
R I Z E N
....ZEN Nodes.... ....Horizen Academy.... ....Help Desk    ....Faucet   
¦
¦
¦
¦
¦
¦
¦
¦
¦
¦
¦
¦
¦
¦
¦
¦
¦
¦
¦
¦
¦
¦
¦
¦
surfer43
Sr. Member
****
Offline Offline

Activity: 560
Merit: 250


"Trading Platform of The Future!"


View Profile
January 24, 2014, 06:40:37 PM
 #758

Ok I calculated my measly CPU will get 1/10 share per block (if the shares are the same amount of work for skc.coinmine.pl)...
but when the block is found is the work discarded making it extremely unlikely for me to get shares?
does someone with more hashing power want to test my pool?
skcmine.tk

Token expired, please try again upon registration

Ugh yes that happened to me also but try again
surfer43
Sr. Member
****
Offline Offline

Activity: 560
Merit: 250


"Trading Platform of The Future!"


View Profile
January 24, 2014, 06:47:20 PM
 #759

IT WORKS!!!  Shocked

Is this your normal hash rate?
gielbier
Sr. Member
****
Offline Offline

Activity: 914
Merit: 250


Making Smart Money Work


View Profile
January 24, 2014, 06:53:25 PM
 #760

Also mining with 40 Mh/s Smiley

█████▄
██▀   ▀██
██     ██
▀██▄ ▄██▀
▄████▄   ▀███▀   ▄████▄
▄██▀  ▀██▄▄████▄▄██▀  ▀██
██       ███   ███       ██
██▄  ▄██▀▀████▀▀██▄  ▄██▀
▀████▀   ▄███▄   ▀████▀
▄██▀ ▀██▄
██     ██
██▄   ▄██
▀█████
          ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄    ▄▄▄▄    ▄▄
Prasaga
                                                    ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄    ▄▄▄▄▄▄▄▄▄
████████████████▄
██████████████████▄
████████████████████▄
█████████████████████
█████████████████████
█████████████████████
█████████████████████
█████████████████████
█████████████████████
█████████████████████
█████████████████████
█████████████████████
█████████████████████
WHITEPAPER     
►  TECH WP
►  COMMERCIAL WP
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 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 »
  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!