Bitcoin Forum
May 14, 2024, 01:38:44 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
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 »
441  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Triangles [TRI] - low supply X13 PoS over TOR with secure messaging on: July 31, 2015, 04:51:37 AM
200 TRI to wurst for efforts on Wallet! Smiley

Woohooo! Just saw that - thanks a lot!

Regarding wallet release:
Apparently the compiled Mac wallet build doesnt contain the needed libs. This will be fixed  - but since I dont compile the Mac wallet myself, I don't know if this will happen today or if it will take another day. This isn't time critical since "Pharao"/4.0.0.4 wallets will still work together with "Black Pharao"/4.2.1.0 wallets.

The windows wallet will still be released this evening (CET timezone). Wink

Edit: Just returned home after a loooooooooong day. Uploaded everything. I'm drop dead tired, gonna update the ANN tomorrow morning.

work till you drop !!!
just testing the mac wallet Wink
442  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] MangoCoinz Official ANN Thread - Mine cryptocurrencies on you smart phone on: July 28, 2015, 02:22:46 AM
i have only just updated from 0.5.2 and there is limited mining per day ?

i guess there is some attraction to this to make it a more conscious effort, and also another "exercise" to do Smiley
i was initially unimpressed with the idea, but appreciate the timer concept more now ..

do i need to make a new account ?
should i use a different email ?

ty

edit
link in OP googleplay is to 0.5.3
443  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][QUIT] Quit Dough, Real Products (e-cigs) +Multi-Vendor Vape Site on: July 27, 2015, 02:00:15 AM
If anyone (by anyone I mean the few that gave a shit) has the time to get Quit back I will happily hand over my 850k of coins for quit to live on.
After putting $1000s into this and lots of time I would hate to see it just die in the ass.

Matt


What is the issues?

Have you tried to get added for trading at Yobit.net exchange?



c-cex seem to have not noticed a 850k deposit to their exchange pre de-listing.
and they also seem to be not giving a fuck Wink


QUIT is currently listed on cryptopia.
https://www.cryptopia.co.nz/Exchange?market=QUIT_BTC
444  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][QUIT] Quit Dough, Real Products (e-cigs) +Multi-Vendor Vape Site on: July 24, 2015, 06:47:21 AM
If anyone (by anyone I mean the few that gave a shit) has the time to get Quit back I will happily hand over my 850k of coins for quit to live on.
After putting $1000s into this and lots of time I would hate to see it just die in the ass.

Matt

are you talking about the stash you sent to c-cex ??
are they replying at all ?

edit.
lol i sent a tweet

i wonder how much it is to send 5k of them ?


cex only ever sent me standard reply emails when asking anything, like T&C stuff, they didn't want to help when asked about why no coins I sent went to the wallet or why they couldn't be transferred etc, not sure what i lost on cex maybe 80k,
So I am saying I would give away whats in my wallet.




you have tx details etc ?
i'm willing to keep hassling them.
445  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] CommunityCoin (COMM) | Pure PoS | Original COMM MultiPools Coming Soon on: July 24, 2015, 06:37:36 AM

GREAT NEWS Cheesy

GIT THE NEW WALLET TODAYS !!!
446  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ANN CryptoPennies X11 PoW ended. on: July 23, 2015, 03:49:16 AM
change main.cpp

https://bitbucket.org/CryptoPennies/cryptopennies/src/1ae5fd2e8317e458ca79b7af36b4120b37209472/src/main.cpp?at=master#cl-999

Code:
// miner's coin stake reward based on coin age spent (coin-days)
int64_t GetProofOfStakeReward(int64_t nCoinAge, int64_t nFees)
{
    int64_t nRewardCoinYear;
    nRewardCoinYear = COIN_YEAR_REWARD;
    int64_t nSubsidy = 0;

    // hiPoS
   int64_t nHeight = pindexBest->nHeight;
   if (nHeight > 5000 && nHeight < 6000) {

       if (nHeight < 6000)
           nSubsidy = 0.01 * COIN;
   }
   else {
       nSubsidy = 0 * COIN;
   }

    if (fDebug && GetBoolArg("-printcreation"))
        printf("GetProofOfStakeReward(): create=%s nCoinAge=%"PRId64"\n", FormatMoney(nSubsidy).c_str(), nCoinAge);

    return nSubsidy + nFees;
}

to >>>>>

Code:
// miner's coin stake reward based on coin age spent (coin-days)
int64_t GetProofOfStakeReward(int64_t nCoinAge, int64_t nFees)
{
    int64_t nRewardCoinYear;
    nRewardCoinYear = COIN_YEAR_REWARD;
    int64_t nSubsidy = 0;

    // hiPoS
   int64_t nHeight = pindexBest->nHeight;
   if (nHeight > 5000 && nHeight < 6000) {

       if (nHeight < 6000)
           nSubsidy = 0.01 * COIN;
   }
    else if(pindexBest->nHeight < 6210)
    {
        nSubsidy = 0 * COIN;
    }
   else {
       nSubsidy = 0.00001 * COIN;
   }

    if (fDebug && GetBoolArg("-printcreation"))
        printf("GetProofOfStakeReward(): create=%s nCoinAge=%"PRId64"\n", FormatMoney(nSubsidy).c_str(), nCoinAge);

    return nSubsidy + nFees;
}


seed node doesnt even seem up. but for neatness sake
change net.cpp
https://bitbucket.org/CryptoPennies/cryptopennies/src/1ae5fd2e8317e458ca79b7af36b4120b37209472/src/net.cpp?at=master#net.cpp-1111

Code:
// DNS seeds
// Each pair gives a source name and a seed name.
// The first name is used as information source for addrman.
// The second name should resolve to a list of seed addresses.
static const char *strDNSSeed[][2] = {
    {"23.95.121.121", "23.95.121.121"},
};

to

Code:
// DNS seeds
// Each pair gives a source name and a seed name.
// The first name is used as information source for addrman.
// The second name should resolve to a list of seed addresses.
static const char *strDNSSeed[][2] = {
    {"", ""},
};

and https://bitbucket.org/CryptoPennies/cryptopennies/src/1ae5fd2e8317e458ca79b7af36b4120b37209472/src/net.cpp?at=master#net.cpp-1176

Code:
unsigned int pnSeed[] =
{
    0xdf4bd379, 0x7934d29b, 0x26bc02ad, 0x7ab743ad, 0x0ab3a7bc,
    0x375ab5bc, 0xc90b1617, 0x5352fd17, 0x5efc6c18, 0xccdc7d18,
    0x443d9118, 0x84031b18, 0x347c1e18, 0x86512418, 0xfcfe9031,
    0xdb5eb936, 0xef8d2e3a, 0xcf51f23c, 0x18ab663e, 0x36e0df40,
    0xde48b641, 0xad3e4e41, 0xd0f32b44, 0x09733b44, 0x6a51f545,
    0xe593ef48, 0xc5f5ef48, 0x96f4f148, 0xd354d34a, 0x36206f4c,
    0xceefe953, 0x50468c55, 0x89d38d55, 0x65e61a5a, 0x16b1b95d,
    0x702b135e, 0x0f57245e, 0xdaab5f5f, 0xba15ef63,
};

to
(do we need a comma in there ??)

Code:
unsigned int pnSeed[] =
{

};



compile it.
distribute to current users >> wont need to change yr data dir at all.
let yobit know.
bobs yr uncle.


this is a pissy little pos reward hopefully in line with the pissy idea of pennies.

..
lol quick google search gives those hex seeds being in cryptcoin, gridcoin, and opalcoin
447  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][QUIT] Quit Dough, Real Products (e-cigs) +Multi-Vendor Vape Site on: July 22, 2015, 02:14:30 AM
If anyone (by anyone I mean the few that gave a shit) has the time to get Quit back I will happily hand over my 850k of coins for quit to live on.
After putting $1000s into this and lots of time I would hate to see it just die in the ass.

Matt

are you talking about the stash you sent to c-cex ??
are they replying at all ?

edit.
lol i sent a tweet

i wonder how much it is to send 5k of them ?
448  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] BitNet VpnCoin | P2P Lottery|AES|Domain&Website |Free VPN|Voice&video call on: July 20, 2015, 01:42:52 PM
New Reward:
We Offering 2 million VpnCoins, looking for a writer, to write a about of BitNet and VpnCoin's book, each word reward 1VPN.

When does it need to be finished and how long should the book be?

lol
2million coins - each word 1 vpn Cheesy
449  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][QUIT] Quit Dough, Real Products (e-cigs) +Multi-Vendor Vape Site on: July 18, 2015, 03:44:26 AM
i think it's a matter of hassling c-cex.

they don't seem terrible scammers, but more after easy $$..
so perhaps they are quite willing to ignore dead coins if no-one hassles them. but if they are hassled then QUIT is not dead ?

450  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Trusted-Cryptos Coin Thread [CryptoBank Development] on: July 18, 2015, 03:08:06 AM




    hey what happened at Cryptopia? ECC won the vote couple of weeks ago ...

cryptopia has a custom unix os. ECC would fail to compile on thier systems and they never figured out why

hehe another reason to make a simplified low resource version Wink

you mis understand. thats not the problem. problem was i used libraries that arent compaitble on thier machines.

ah yes makes sense .
but you could make a version with standard libraries yes ?


451  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Trusted-Cryptos Coin Thread [CryptoBank Development] on: July 17, 2015, 01:01:20 PM




    hey what happened at Cryptopia? ECC won the vote couple of weeks ago ...

cryptopia has a custom unix os. ECC would fail to compile on thier systems and they never figured out why

hehe another reason to make a simplified low resource version Wink
452  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [LIMX] [X11] [B2B] [MMO] limx.eu , InstantX , Masternodes , Bittrex on: July 16, 2015, 12:44:01 PM

lol i only ever tried https://blockexperts.com/limx

453  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [LIMX] [X11] [B2B] [MMO] limx.eu , InstantX , Masternodes , Bittrex on: July 16, 2015, 02:56:17 AM
Alias MN guide
LOCAL WALLET
1. create a file masternode.conf
~/.limecoinx/masternode.conf
2. masternode.conf format
ALIAS_NAME IP_MASTERNODE::8886 MASTERNODE_PRIVKEY TRANSACTIONHASH INDEX_NUMBER(0 or 1 - 5000 limx transaction)

example:
MN1 8.8.8.8:8886 MASTERNODE_PRIVKEY dffd1b04eaa08d355243209f29646078302f6abe037c5a3391b3d31c60b51a3b 0
MN2 8.8.8.4:8886 MASTERNODE_PRIVKEY dffd1b04eaa08d355243209f29646078302f8abe037c5a3391b3d34c60b51a3b 0

3. starting your MN
./limecoinxd masternode start-many
or
./limecoinxd masternode start-alias ALIAS_NAME

i'm having trouble with start-many . i keep receiving a "could not allocate vin"

i followed https://dashtalk.org/threads/reubens-start-multiple-masternodes-from-one-wallet-guide-start-many.4034/

.
i created an empty wallet.
imported two privkeys
did a > masternode genkey
also > masternode outputs (two of them were output)

placed output in masternode.conf

master1 1.2.3.4:8886 genkey txHash1 index
master2 1.2.3.4:8886 samegenkey txHash2 index


limecoinx.conf has contents as suggested by reubens walk though
Code:
rpcuser=SomeRandomString
rpcpassword=EvenLongerRandomString
rpcallowip=127.0.0.1
listen=0
server=1
daemon=1
logtimestamps=1


any suggestions ??

 if(!GetMasterNodeVin(vin, pubKeyCollateralAddress, keyCollateralAddress, txHash, strOutputIndex)) {
        errorMessage = "could not allocate vin";
        LogPrintf("CActiveMasternode::Register() - Error: %s\n", errorMessage.c_str());
        return false;
    }

Something is missing ??

lol but what ? and how ?

as far as i can tell i have put correct and appropriate data in masternode.conf

"i created an empty wallet. ??"

Use two empty wallet.

two empty wallets ? what do you mean ?

i have tried using two seperate addresses for the two tx. and i also have tried using a single address with two tx.

,
later i will try a brand new empty wallet with two seperate new addresses.


...
doesnt help the explorer is lagging by a couple of days Smiley
454  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [LIMX] [X11] [B2B] [MMO] limx.eu , InstantX , Masternodes , Bittrex on: July 15, 2015, 03:17:40 AM
Alias MN guide
LOCAL WALLET
1. create a file masternode.conf
~/.limecoinx/masternode.conf
2. masternode.conf format
ALIAS_NAME IP_MASTERNODE::8886 MASTERNODE_PRIVKEY TRANSACTIONHASH INDEX_NUMBER(0 or 1 - 5000 limx transaction)

example:
MN1 8.8.8.8:8886 MASTERNODE_PRIVKEY dffd1b04eaa08d355243209f29646078302f6abe037c5a3391b3d31c60b51a3b 0
MN2 8.8.8.4:8886 MASTERNODE_PRIVKEY dffd1b04eaa08d355243209f29646078302f8abe037c5a3391b3d34c60b51a3b 0

3. starting your MN
./limecoinxd masternode start-many
or
./limecoinxd masternode start-alias ALIAS_NAME

i'm having trouble with start-many . i keep receiving a "could not allocate vin"

i followed https://dashtalk.org/threads/reubens-start-multiple-masternodes-from-one-wallet-guide-start-many.4034/

.
i created an empty wallet.
imported two privkeys
did a > masternode genkey
also > masternode outputs (two of them were output)

placed output in masternode.conf

master1 1.2.3.4:8886 genkey txHash1 index
master2 1.2.3.4:8886 samegenkey txHash2 index


limecoinx.conf has contents as suggested by reubens walk though
Code:
rpcuser=SomeRandomString
rpcpassword=EvenLongerRandomString
rpcallowip=127.0.0.1
listen=0
server=1
daemon=1
logtimestamps=1


any suggestions ??

 if(!GetMasterNodeVin(vin, pubKeyCollateralAddress, keyCollateralAddress, txHash, strOutputIndex)) {
        errorMessage = "could not allocate vin";
        LogPrintf("CActiveMasternode::Register() - Error: %s\n", errorMessage.c_str());
        return false;
    }

Something is missing ??

lol but what ? and how ?

as far as i can tell i have put correct and appropriate data in masternode.conf
455  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [LIMX] [X11] [B2B] [MMO] limx.eu , InstantX , Masternodes , Bittrex on: July 14, 2015, 01:58:28 PM
Alias MN guide
LOCAL WALLET
1. create a file masternode.conf
~/.limecoinx/masternode.conf
2. masternode.conf format
ALIAS_NAME IP_MASTERNODE::8886 MASTERNODE_PRIVKEY TRANSACTIONHASH INDEX_NUMBER(0 or 1 - 5000 limx transaction)

example:
MN1 8.8.8.8:8886 MASTERNODE_PRIVKEY dffd1b04eaa08d355243209f29646078302f6abe037c5a3391b3d31c60b51a3b 0
MN2 8.8.8.4:8886 MASTERNODE_PRIVKEY dffd1b04eaa08d355243209f29646078302f8abe037c5a3391b3d34c60b51a3b 0

3. starting your MN
./limecoinxd masternode start-many
or
./limecoinxd masternode start-alias ALIAS_NAME

i'm having trouble with start-many . i keep receiving a "could not allocate vin"

i followed https://dashtalk.org/threads/reubens-start-multiple-masternodes-from-one-wallet-guide-start-many.4034/

.
i created an empty wallet.
imported two privkeys
did a > masternode genkey
also > masternode outputs (two of them were output)

placed output in masternode.conf

master1 1.2.3.4:8886 genkey txHash1 index
master2 1.2.3.4:8886 samegenkey txHash2 index


limecoinx.conf has contents as suggested by reubens walk though
Code:
rpcuser=SomeRandomString
rpcpassword=EvenLongerRandomString
rpcallowip=127.0.0.1
listen=0
server=1
daemon=1
logtimestamps=1


any suggestions ??
456  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ANN CryptoPennies X11 PoW ended. on: July 12, 2015, 11:08:17 AM
So, I guess we are now stuck with broke coin. Angry

Fixing it would be really, really simple though.


my earlier proposition
to make POS generate 10 blocks (or whatever) after every tx, to enable tx to go through.
would make diff retargeting sketchy .. and those 10 blocks would no doubt fly through in 5 seconds.

i'm very sad. because i think that would be an awesome idea when combined with zero reward pos Sad

i assume wurstgelee is for adding a minor reward to pos.


as far as yobit concerned surely if there was enough community voice given here. then yobit would accede to a community takeover.

--
seed nodes,
could just delete those in the code. and add some in yr
cryptopenis.conf


oh.
obv a name change to cryptopenis would also be a good idea.


//
maybe tweeting yobit would be useful.
457  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [Network Repaired][ANN][BITS] BitSeeds - A Currency that Grows! on: July 11, 2015, 06:02:00 AM
i just had a strange experience of bittrex rejecting my fresh new address.

it was generated from a daemon using current github source
    "version" : "v1.1.0.0-g",


--

mayhaps when my coins confirm i can send some to that address from the said daemon and see what happens ..

Don't use the GitHub, I think that still has the code from the original launch and I'm not sure Gabe has access to that GitHub account since the original dev parted ways.  Here are the current wallets

http://sourceforge.net/projects/bitseedsofficialrepository/files/

We're working on a new version with a new dev with added features, but using the wallets from the above link should give you no problems with Bittrex.  We will either update the existing GitHub if we have access, or will create a new one. Not sure why the old dev suddenly switched to Sourceforge - I'm more of a GitHub fan, personally.


Now that I think about it, we probably should create a new thread since the OP can't be updated after Bitcointalk apparently locked Gabe out of that account.

lolz. well the 2nd address seemed to work i wont do any further testing though Wink
later i'll recompile ..


hmmz is the explorer working properly?
http://explorer.bitseeds.org:3001/


edit.
ok it's sort of working Smiley lol
foudn my transaction but the explorere needs love

more edit.

sourceforge only has compiled qts ?
no code there Sad
458  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [Network Repaired][ANN][BITS] BitSeeds - A Currency that Grows! on: July 11, 2015, 03:33:05 AM
i just had a strange experience of bittrex rejecting my fresh new address.

it was generated from a daemon using current github source
    "version" : "v1.1.0.0-g",


--

mayhaps when my coins confirm i can send some to that address from the said daemon and see what happens ..
459  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ANN CryptoPennies X11 PoW ended. on: July 10, 2015, 02:40:42 AM

hehe it's like a game trying to send coins.
460  Alternate cryptocurrencies / Service Announcements (Altcoins) / VIRCUREX anyone gettting their frozen funds out since august 2014 ?? on: July 09, 2015, 10:18:57 AM
according to this page
https://vircurex.com/welcome/ann_reserved.html

their last disbursement was in august 2014.. anyone know any different ??



+++

Update 20th August 2014
Payout to frozen accounts this month:
10.515 BTC
15.24 LTC
29.44 FTC
9.61 TRC

Total balances after the amounts have been distributed
BTC: 329 accounts with frozen amounts, total 1,671 BTC
FTC: 42 accounts with frozen amounts, total 151,953 FTC
LTC: 2299 accounts with frozen amounts, total 124,864 LTC
TRC: 77 accounts with frozen amounts, total 127,719 TRC

Update 15th July 2014
Payout to frozen accounts this month:
13.87 BTC
17.34 LTC
26.75 FTC
10.61 TRC

Total balances after the amounts have been distributed
BTC: 335 accounts with frozen amounts, total 1682 BTC
FTC: 42 accounts with frozen amounts, total 151,983 FTC
LTC: 2330 accounts with frozen amounts, total 124,880 LTC
TRC: 77 accounts with frozen amounts, total 127,729 TRC
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 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!