Bitcoin Forum
May 22, 2024, 01:49:36 PM *
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 »  All
  Print  
Author Topic: [ANN] Murica Coin (FREE) [PoW/KGW] - Launched!  (Read 23492 times)
LordPiccolo
Hero Member
*****
Offline Offline

Activity: 1022
Merit: 1000


View Profile
March 14, 2014, 09:17:17 PM
 #161

MCA Pool is confirming my coins...just slowly.

Proof.
http://imgur.com/MAnMsRX


I haven't tried to withdraw yet...anyone want me to try that out and post a pic?

Auto withdraw has just confirmed a transaction in my wallet, payouts seems to be working but the confirms are still all over the place, dev appears to be looking into this which is good

                                 
     ▄███████████████████████   
    █████████████████████████   
    █████████████████████████   
    ███████           ███████   
    ███████          ▄███████   
    ███████   ▄▄▄▄███████████   
    ████████████████████████▀   
    ███████████████████▀▀▀       
    █████████████▀▀▀             
    ███████▀▀                   
    █████▀▀                     
    ▀▀▀                         
                                 
.phore.
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████
xD E L I V E R I N G   B L O C K C H A I N   T E C H N O L O G Yxx
xxxxxxxxxxxxxT O   T H E   R E A L   W O R L Dxxxxxxxxxxxxxx

██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████
..Telegram....
..Facebook...
..Instagram...
..Youtube...
..LinkedIn...
..Twitter......
..Discord...
..Reddit.....
..Github.....
(██████████████████████████████
xphore.ioxx

██████████████████████████████████████
)
cryptowho
Full Member
***
Offline Offline

Activity: 182
Merit: 100

Ask me about Karmacoin


View Profile
March 14, 2014, 09:25:51 PM
 #162

aww no 'Murica memes? Cry Cry Cry Cry

looking for C++ coders , web-dev and coin-devs to join karmacoin team. We are trying to expand. we have so many goals. Challenge accepted?  PM me.
singula
Sr. Member
****
Offline Offline

Activity: 462
Merit: 251



View Profile
March 14, 2014, 09:56:36 PM
 #163

Ok it seems that its just takes too long for coins to confirm
We've set confirmations number down to 10 and payouts are beeing made now. Please check your wallets

I just don't understand why the confirmations are so slow..

Look at http://mca.pool.mn/index.php?page=statistics&action=blocks
Look at first two columns in the table (Block and Validity)
Do you think it is what it should like?

You managed to smash into the pool, so that it actually paid out some money, but only a small fraction of what it should pay and you have not fixed the problem.

It may look like a good start, but you may have just made thing worse in the long run.

It is like if you fix clogged drain in your toilet by using a pickaxe to create an extra hole on the side. Yay, the toilet is no longer full of crap ... except your floor looks a bit brown now!

I don't see inside your pool, but from the list of found blocks and state of wallet from the block explorer it seems you paid out also for some of the orphans - i.e. blocks that the pool thinks it have mined but in fact it does not. So unless part of the wallet balance i at address I don't see in the block explorer

In the pool administration, pick "Wallet Info" in the admin panel. Is "Liquid Assets" column negative? If yes, the value tell you that some of the past blocks before the form needs to be manually marked as orphaned, as they are in fact not in your pool wallet. I think that by lowering the confirmations to 10 you've paid out many of them (and this cannot be undone now, as the coins have now left the server). While that may be a nice gesture to miners that mined block that were lost later in the fork, it also means you will run out of coins and won't be able to actually fully pay out everybody once this is fixed properly.

My guess is that you are now about 35 blocks short (i.e. you are missing about 620000 coins) and there are still 10 blocks that can still be saved by marking them as orphan before fixing the stuff properly. I guess that the liquid assets balance would be now about -800000.

And next time you advertise your pool, please leave the "Skilled admin" line out. The "I just don't understand" line proves that the claim is false Smiley

Check your cronjobs and logs from them. Check the database. Look at your liquid assets balance. Your pool still need some work to fix the mess up ...
If not sure what to do, ask for help. It may be better than hastily rushing with some action and not realizing the full consequences.

In the end you will probably have to raise the block confirmations to a value actually larger than what is the actual mined block maturity to overcome temporary shortage of coins and then you have to add coins to server wallet to fix this up (either from your own pocket or you have to add coins gradually by introducing pool fees - if you add 1% or 2% fee, the fee may cover the loss possibly within few days or weeks and restore your pool to a usable state, allowing you to set fees back to 0 once the shortage is fixed.)


Big brother is not watching you anymore. Big brother is telling you how to live.
gerbill2
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile WWW
March 15, 2014, 12:22:31 AM
 #164

we are getting this error
blockupdate.php(39): jsonRPCClient->__call('getblock', Array)

I've updated everything several times and still getting this error
Coin may be forked again since http://107.170.47.66/ pool has 2/3 of network hashrate

Any ideas how to fix this?
singula
Sr. Member
****
Offline Offline

Activity: 462
Merit: 251



View Profile
March 15, 2014, 02:39:27 AM
 #165

we are getting this error
blockupdate.php(39): jsonRPCClient->__call('getblock', Array)

I've updated everything several times and still getting this error
Coin may be forked again since http://107.170.47.66/ pool has 2/3 of network hashrate

Any ideas how to fix this?

I've encountered this before and I know how to fix it.

You have fixed the fork by deleting and redownloading the blockchain, right?
In that case, MPOS (blockupdate) tries to query the coin daemon about those orphaned blocks, but as they are in the old (now deleted) blockchain, coin daemon will just return error (no such block exist in its database).

You need to manually mark them as orphans (pool then stops trying to ask about them). This can be accomplished for example by fetching hashes of those blocks from the database and in blockupdate.php adding few lines of code that will mark them as orphan (solving all the necessary stuff in the process correctly, like setting transactions associated with that block as orphans, thus deducting them from possible payout, etc ...)

So fetch hashes of blocks from database:
Code:
select height,blockhash from blocks where height>=202 and height<=288;

and insert the code like this in the block cycle in blockupdate.php cronjob (right after the "foreach ($aAllBlocks as $iIndex => $aBlock)" as suggested here), with the hashes of corresponding blocks in place of these 6 that are here as an example:
Code:
foreach ($aAllBlocks as $iIndex => $aBlock) {
  if ($aBlock['blockhash'] =='0000000001682879a3eb9633f52b5d3ab1e98da0e4c1f41ed3c5bc545043fc59'
   || $aBlock['blockhash'] =='000000000292950ef75c5df239bbf2ab1ffd6edbc979c0d3915d37a18dca18b6'
   || $aBlock['blockhash'] =='000000000769f427a8565f47064cc2f17d73ae276d1f1f0e3de1618b4342ff5a'
   || $aBlock['blockhash'] =='000000000f50519761bf3604eab652e8a914d5451ec13a915a902d80cf9cc987'
   || $aBlock['blockhash'] =='000000000e3278ae28ee2f3b68da5c376d4c40d079672669d35c71f41a6f4239'
   || $aBlock['blockhash'] =='0000000004e39755c35a7ec40b4ff7097bbaaf4c0c6aa17d49e67674d9dcac19'
  ) {
    if ($block->setConfirmations($aBlock['id'], -1)) {
      $log->logInfo("    Block marked as orphan");
    } else {
      $log->logError("    Block became orphaned but unable to update database entries");
    }
    continue;
  }
  // Fetch this blocks transaction details to find orphan blocks

Then just rerun the blockupdate cronjob - you may need to use -f if the job is marked as incomplete in the database (but verify that it is not actually runnig before that).

This should fix these block and once fixed, you can set modified blockupdate.php aside (what if another fork happens in the future? You may still need it Smiley and replace it with original. Then your pool should start working again, resuming all the payments.

Also note:
Pool having 2/3 of network hashrate does not by itself cause a fork. If they are evil, they can do some double-spends or mine a bit more than their hashrate would allow, but such actions would be quite well detectable (and they risk compromising their reputation, etc ... ) - such attacks can produce some orphans, but is is not so easy to produce a fork.

Big brother is not watching you anymore. Big brother is telling you how to live.
forzendiablo
Legendary
*
Offline Offline

Activity: 1526
Merit: 1000


the grandpa of cryptos


View Profile
March 15, 2014, 02:42:26 AM
 #166

scam coin..

goin back to mine SUN

yolo
eschmenk
Member
**
Offline Offline

Activity: 140
Merit: 10


View Profile
March 15, 2014, 04:16:46 AM
 #167

I just don't understand why the confirmations are so slow..

And next time you advertise your pool, please leave the "Skilled admin" line out. The "I just don't understand" line proves that the claim is false Smiley







Why nyan.pool.mn is so awesome?

nyan.pool.mn offers:
0% fee
-------->   100% uptime  <--------
Powerful dedicated server
Friendly support via email, jabber or support forums
Skilled admin
DDOS protection
Giveaways - stay tuned!


Join us!




Quote from: MaximoFF38M
Pool_admin, wy are we not working for so long time?

pool_admin is away and the pool is down. donno what happened Sad

 Roll Eyes

DOGE: D6LQ9A9XFgxKxwPRJZKocLUgJhWtWNaFcb     ECC: EX5YjWshEuJAed2tdu1ianrwMuP3fCSgsT     EMC2: ENgpQLmP9kLhTKfnEJQgSoJB1FJGKcP7z8
rew74dse
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
March 15, 2014, 04:21:31 AM
 #168

Good luck Cheesy
elviselvis101
Hero Member
*****
Offline Offline

Activity: 573
Merit: 500



View Profile
March 15, 2014, 10:08:07 AM
 #169

Ok it seems that its just takes too long for coins to confirm
We've set confirmations number down to 10 and payouts are beeing made now. Please check your wallets

I just don't understand why the confirmations are so slow..

got them, thanks
elviselvis101
Hero Member
*****
Offline Offline

Activity: 573
Merit: 500



View Profile
March 15, 2014, 10:10:46 AM
 #170

SPAM SPAM SPAM mca.pool.mn MORE SPAM
I did mine a bit (not this coin obviously) with you but for all the spamming of your pool in this thread, I won't be returning.

Yet another cent... hey, I have two now! (see what I did there? see? SEE?)

edit: oh, and I see lots of complaints about your pool. Nice.... AVOID THIS CENT/POOL

Code:
BLOCK	VALIDITY	TIME
2829 42 left 14/03 09:20:40
2823 49 left 14/03 09:12:40
2819 45 left 14/03 09:08:52
2813 39 left 14/03 09:03:34
...
2773 27 left 14/03 08:34:05
2770 49 left 14/03 08:31:45

What? validity is all over the place. Makes no sense. Complete cent.



Not spam, I mine there, works fine
gerbill2
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile WWW
March 15, 2014, 11:30:39 AM
 #171

It seems we've fixed the pool.
mca.pool.mn should be working fine now

Thanks to singula for helpful tips!  Smiley
qumatru
Sr. Member
****
Offline Offline

Activity: 322
Merit: 251


View Profile
March 15, 2014, 02:08:01 PM
 #172

this ain't really murica if i can't get my money's worth... get us listed on an exchange!!!
florianuhlemann
Full Member
***
Offline Offline

Activity: 378
Merit: 100



View Profile
March 15, 2014, 02:08:08 PM
 #173

P2Pool - fresh clone from git source! (UP-TO-DATE!)

connect your miners to: stratum+tcp://94.23.196.92:17760
username: your_wallet_address
password: 123

Information about pool: http://94.23.196.92:17760

Be sure to come by and spread some hashrate! All hash shouldn't be on one pool! Wink

INSTANT payout when a block is found! No kept back funds, no payout fees. No middleman - no risk!

Join US! Let's find some blocks!

This pool works well needs more miners!

Glad you like my pool so much. Please consider throwing more hashrate at it! Wink
BilliJo
Newbie
*
Offline Offline

Activity: 9
Merit: 0


View Profile
March 15, 2014, 06:05:43 PM
 #174

What about exchanges?
muricacoin (OP)
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
March 15, 2014, 06:44:53 PM
Last edit: March 15, 2014, 07:10:31 PM by muricacoin
 #175

What about exchanges?

We have links to get listed. Start clicking, patriot.
Ioqua
Full Member
***
Offline Offline

Activity: 132
Merit: 100


View Profile
March 15, 2014, 08:43:20 PM
 #176

You should add a link to the MintPal exchange voting too.
locoo1442
Newbie
*
Offline Offline

Activity: 15
Merit: 0


View Profile
March 15, 2014, 11:37:10 PM
 #177

Hello patriots
I'm interested if anyone has an alternative way to contact the owner of this pool: http://107.170.47.66/. I trying to withdraw my funds from the pool, but I cant get a confirmation email. Maybe the problem is in a Mail.bg .. I dont know.Spam folder is also empty ... I wrote three times (different mail also) a support team but no response. If the owner read the topic please write mi PM.If someone else can help me to contact the owner  that would be great.
Thanks and sorry for my English.
cryptowho
Full Member
***
Offline Offline

Activity: 182
Merit: 100

Ask me about Karmacoin


View Profile
March 16, 2014, 05:29:35 AM
 #178

sometimes it helps if you click it twice. try that

looking for C++ coders , web-dev and coin-devs to join karmacoin team. We are trying to expand. we have so many goals. Challenge accepted?  PM me.
Gastroler
Newbie
*
Offline Offline

Activity: 5
Merit: 0


View Profile
March 16, 2014, 09:10:35 AM
 #179

Hello patriots
I'm interested if anyone has an alternative way to contact the owner of this pool: http://107.170.47.66/. I trying to withdraw my funds from the pool, but I cant get a confirmation email. Maybe the problem is in a Mail.bg .. I dont know.Spam folder is also empty ... I wrote three times (different mail also) a support team but no response. If the owner read the topic please write mi PM.If someone else can help me to contact the owner  that would be great.
Thanks and sorry for my English.

Hi mate, I also have this problem.If you find way to resolve this problem, pm me please.
shdjf78er
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
March 16, 2014, 09:14:07 AM
 #180

I like the Murica Coin,good luck Cool
Pages: « 1 2 3 4 5 6 7 8 [9] 10 11 12 »  All
  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!