Bitcoin Forum
April 28, 2024, 11:09:00 AM *
News: Latest Bitcoin Core release: 27.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 »
  Print  
Author Topic: LEAFCOIN - NEW UPDATE AVAILABLE - DIGISHIELD + FLATREWARDS + CHECKPOINTS + MERGE  (Read 74810 times)
This is a self-moderated topic. If you do not want to be moderated by the person who started this topic, create a new topic.
niceman
Sr. Member
****
Offline Offline

Activity: 336
Merit: 254

CoinMine.pw


View Profile WWW
April 04, 2014, 04:03:56 PM
 #241

It's need to change stratum mining pool software or wallet will automatically create transaction to foundation?
yes, you need to upgrade wallet or any blocks you find will not be accepted by the network.

Difficulty algorithm has changed as well.
I mean stratum-mining server part. If it will be additional transaction to Foundation wallet - this transaction should be created for every mined block.
Usually with coins, who make such donations (like EMC2), needed to modify pool server software to correctly create this additional transaction for every mined block.

1714302540
Hero Member
*
Offline Offline

Posts: 1714302540

View Profile Personal Message (Offline)

Ignore
1714302540
Reply with quote  #2

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

Posts: 1714302540

View Profile Personal Message (Offline)

Ignore
1714302540
Reply with quote  #2

1714302540
Report to moderator
pakole69
Full Member
***
Offline Offline

Activity: 266
Merit: 100


OPEN Platform - Powering Blockchain Acceptance


View Profile
April 04, 2014, 04:42:55 PM
 #242

Android Leafcoin Priceticker is now available in the Google play store:
https://play.google.com/store/apps/details?id=nl.publicvoid.leafticker



LeafTicker is a usefull app which shows the current price of Leafcoin.
It is displayed in USD, EUR and BTC.

great job!

I'm in this coin!

OPEN Platform | Powering Blockchain Acceptance [ICO]
❱❱❱❱❱❱❱❱❱❱❱❱❱❱❱Blockchain's First Payment API❱❱❱❱❱❱❱❱❱❱❱❱❱❱❱❱
Whitepaper  ●  Slack  ●  Facebook  ●  Twitter  ●  Reddit  ●  Telegram
One Six
Sr. Member
****
Offline Offline

Activity: 281
Merit: 250


View Profile
April 04, 2014, 04:50:11 PM
 #243

wonderful developments made by dev and team.
mcg2
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
April 04, 2014, 05:21:39 PM
 #244

It's need to change stratum mining pool software or wallet will automatically create transaction to foundation?
yes, you need to upgrade wallet or any blocks you find will not be accepted by the network.

Difficulty algorithm has changed as well.
I mean stratum-mining server part. If it will be additional transaction to Foundation wallet - this transaction should be created for every mined block.
Usually with coins, who make such donations (like EMC2), needed to modify pool server software to correctly create this additional transaction for every mined block.

yes, you are correct. the stratum software has to be changed to include the transaction.

i will download stratum and modify it and open a github for it @ https://github.com/leafcoin .

thanks for mentioning this.
mcg2
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
April 04, 2014, 06:42:02 PM
Last edit: April 08, 2014, 04:32:23 PM by mcg2
 #245

Change for stratum mining pools

add conf/config.py to end of file

Code:
DONATION=5000000000 #satoshi, 50 coins


change in lib/coinbasetx.py ( inside def __init__(self, timestamper, coinbaser, value, flags, height, data): )

Code:

        tx_in.scriptSig = tx_in._scriptSig_template[0] + self.extranonce_placeholder + tx_in._scriptSig_template[1]

        # LEAFCOIN

        charity_value = int(settings.DONATION)
        if charity_value > value: # dont set too high. probably you wont :)
            charity_value = value
        
        tx_out_charity = halfnode.CTxOut()
        tx_out_charity.nValue = charity_value
        tx_out_charity.scriptPubKey = util.getCharityScript()
    
        tx_out = halfnode.CTxOut()
        tx_out.nValue = value - charity_value
        tx_out.scriptPubKey = coinbaser.get_script_pubkey()

        if settings.COINDAEMON_TX == 'yes':
            self.strTxComment = "http://github.com/ahmedbodi/stratum-mining"
        self.vin.append(tx_in)
        self.vout.append(tx_out)
        self.vout.append(tx_out_charity)


add in lib/util.py to the end

Code:
def getCharityScript():                          
    return b'\x76\xa9\x14' + binascii.unhexlify("abe20097fd1476fba24e6e87b2f31da2196cdb88") + b'\x88\xac'; # needs to be this HASH160 address key. other key wont be accepted.

If you dont, mined blocks will not be accepted by the network

Note that these changes (probably) will also apply to a p2pool and multipool.

If you have a p2pool, i can help you out to fix it. Let me know what code is used. PM me
rampa
Member
**
Offline Offline

Activity: 108
Merit: 10


View Profile WWW
April 05, 2014, 08:49:49 AM
 #246

Change for stratum mining pools




 Hown this can be added to merge mining? do you have an MM p2pool example?

Scrypt merged mining + multipool! http://manicminer.in
mcg2
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
April 05, 2014, 09:19:15 AM
 #247

not a p2pool example.

but there is a mergemining proxy

https://gitorious.org/bitcoin/luke-jr-bitcoin/source/8f3f29550c2ad33f5635799ba835276eaebb4a2e:contrib/merged-mine-proxy
rampa
Member
**
Offline Offline

Activity: 108
Merit: 10


View Profile WWW
April 05, 2014, 11:48:53 AM
 #248



  Not useful for me... :-(  My stratum mergemining part is cloned from p2pool....

Scrypt merged mining + multipool! http://manicminer.in
mcg2
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
April 05, 2014, 12:03:08 PM
 #249



  Not useful for me... :-(  My stratum mergemining part is cloned from p2pool....

i will check on the p2pool code today... and will provide a quickpatch.

have some patience though ( today/tomorrow ). working on things.
Dagger75
Full Member
***
Offline Offline

Activity: 156
Merit: 100


View Profile
April 05, 2014, 09:30:48 PM
 #250

Just a Reminder,  Everyone Please Update to v1.6 Leafcoin Wallet that can be found www.leafco.in for OS X, Windows, and Debian

Direct v1.6 for Windows: https://mega.co.nz/#!3Q0SDKKR!9s9ws07XGCRl6OwtP_5NPBIUM7fEdf2uTqcUfOieLtc

Thanks

>>>http://foundation.leafco.in/<<<  Please help support our cause

>>>A True Alt, with a True Purpose<<<  $$Leafcoin$$
pakole69
Full Member
***
Offline Offline

Activity: 266
Merit: 100


OPEN Platform - Powering Blockchain Acceptance


View Profile
April 06, 2014, 01:03:54 AM
 #251

Just a Reminder,  Everyone Please Update to v1.6 Leafcoin Wallet that can be found www.leafco.in for OS X, Windows, and Debian

Direct v1.6 for Windows: https://mega.co.nz/#!3Q0SDKKR!9s9ws07XGCRl6OwtP_5NPBIUM7fEdf2uTqcUfOieLtc

Thanks
that link is off

OPEN Platform | Powering Blockchain Acceptance [ICO]
❱❱❱❱❱❱❱❱❱❱❱❱❱❱❱Blockchain's First Payment API❱❱❱❱❱❱❱❱❱❱❱❱❱❱❱❱
Whitepaper  ●  Slack  ●  Facebook  ●  Twitter  ●  Reddit  ●  Telegram
mcg2
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
April 06, 2014, 09:07:13 AM
 #252

https://mega.co.nz/#!rBlxwJSD!dA9F86P7UKkC2g-SZA5yr9PTjlp0xH5Ytg8Oi0XmSus

or you can always get the latest by using:

http://leafco.in/leafcoin-qt-win32-latest.zip

the link dagger gave was the wrong link
Dallas5
Sr. Member
****
Offline Offline

Activity: 364
Merit: 250


View Profile WWW
April 06, 2014, 11:54:11 AM
Last edit: April 06, 2014, 01:09:18 PM by Dallas5
 #253

Is leaf.hashstrike.com stuck at block 95318?  Did they update the wallet?

edit: nevermind it's working again.

mcg2
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
April 06, 2014, 01:41:18 PM
 #254

Is leaf.hashstrike.com stuck at block 95318?  Did they update the wallet?

edit: nevermind it's working again.

i sent them an email ( or by using other methods, cant remember Smiley ) to update. probably update in progress.

cheers.
pakole69
Full Member
***
Offline Offline

Activity: 266
Merit: 100


OPEN Platform - Powering Blockchain Acceptance


View Profile
April 06, 2014, 11:26:32 PM
 #255

my wallet is asking me to update to 0.8.6.4 but i have that version .  Huh Huh Huh

OPEN Platform | Powering Blockchain Acceptance [ICO]
❱❱❱❱❱❱❱❱❱❱❱❱❱❱❱Blockchain's First Payment API❱❱❱❱❱❱❱❱❱❱❱❱❱❱❱❱
Whitepaper  ●  Slack  ●  Facebook  ●  Twitter  ●  Reddit  ●  Telegram
mcg2
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
April 06, 2014, 11:34:56 PM
 #256

my wallet is asking me to update to 0.8.6.4 but i have that version .  Huh Huh Huh

if you are on the version, discard the message.

we will replace the message tomorrow with a better version matched one.

we have cancelled the current message.

right now i am going to bed.

sorry for the inconvenience.
91porn
Full Member
***
Offline Offline

Activity: 156
Merit: 100


View Profile
April 08, 2014, 07:59:29 AM
 #257

Is this coin dead? Smiley

__ron__
Member
**
Offline Offline

Activity: 77
Merit: 10


View Profile WWW
April 08, 2014, 08:15:14 AM
 #258

Is this coin dead? Smiley

And why do you think that it is dead?

If you read the whole thread you see that this question is asked before.
And there is enough response to it.

Price is now moving up, so i don't understand why you ask it.

pakole69
Full Member
***
Offline Offline

Activity: 266
Merit: 100


OPEN Platform - Powering Blockchain Acceptance


View Profile
April 08, 2014, 10:52:52 AM
 #259

when will be the merged ready?

OPEN Platform | Powering Blockchain Acceptance [ICO]
❱❱❱❱❱❱❱❱❱❱❱❱❱❱❱Blockchain's First Payment API❱❱❱❱❱❱❱❱❱❱❱❱❱❱❱❱
Whitepaper  ●  Slack  ●  Facebook  ●  Twitter  ●  Reddit  ●  Telegram
Mr.Joker
Hero Member
*****
Offline Offline

Activity: 868
Merit: 1000


View Profile
April 08, 2014, 10:58:38 AM
 #260

As long as the whale is buying for 2 and selling for 3, nothing will rise
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 »
  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!