Bitcoin Forum
May 11, 2024, 05:43:09 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 [219] 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 »
  Print  
Author Topic: [ANN] microCoin MRC - alcurEX - Scrypt-Jane - nFactor  (Read 374701 times)
glinko
Jr. Member
*
Offline Offline

Activity: 37
Merit: 6


View Profile
May 05, 2014, 08:39:04 AM
 #4361

Buying wall on mintpal is melting down (from 30 to 20 BTC). I am wondering if I should sell all MRC I have there, since very soon it might become invalid (I think mintpal has not updated wallet yet, and now we will have 3 versions of MRC soon Sad).

I have lost 10 mil on poloniex, I sent them 2 days ago but it never appears on my balance. Helpdesk have not responded yet.

A lot of bad signs for the coin.

So another person with a missing MRC deposit at Polo.  That makes me feel better haha.  I'm sure they will get it sorted out quickly.
Transmited 5.5 mil two days ago to poloniex. Wrote to support why I cant see my depo (mrc). yesterday they solve my problem. so support working fine.
Today send some coins again and not resived again... waiting for solution\updating
They seems to be correct MRC wallet anyway
I just send few coins and deposit history show:
MRC   5.5   2014-05-05.07:35:09   PENDING (16 of 15 confirmations)
It takes 15min.
yep. my depo confirmed too!
1715406189
Hero Member
*
Offline Offline

Posts: 1715406189

View Profile Personal Message (Offline)

Ignore
1715406189
Reply with quote  #2

1715406189
Report to moderator
The network tries to produce one block per 10 minutes. It does this by automatically adjusting how difficult it is to produce blocks.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715406189
Hero Member
*
Offline Offline

Posts: 1715406189

View Profile Personal Message (Offline)

Ignore
1715406189
Reply with quote  #2

1715406189
Report to moderator
1715406189
Hero Member
*
Offline Offline

Posts: 1715406189

View Profile Personal Message (Offline)

Ignore
1715406189
Reply with quote  #2

1715406189
Report to moderator
snguyen
Member
**
Offline Offline

Activity: 98
Merit: 10

One life. Live it.


View Profile WWW
May 05, 2014, 08:43:12 AM
 #4362


All exchange and pools are informed.
Mintpal sent note they are updated wallet.

Poloniex I don't know, but I just test withdraw and it works fine.
Next I will send deposit.

Correct blocks will start continue after block 318000 with code:

      else if (nHeight <= 318000) // 0.01 block rewards (wrong logic as coin spec, but we need to keep it because it's already happened)
      {
      nSubsidy = (3100 - ((nHeight * 0.01) - 310000)) - 300000;
      }

      else
      {
      nSubsidy = (10000 - ((nHeight - 318000) * 0.01)) * COIN;
      if (nSubsidy <= 1000 * COIN) nSubsidy = 1000 * COIN; // Rest of blocks are 1000 coins. Then network working forever with stake blocks.
      }


Halibit, if you decide to use my code, use it correctly. I picked 320,000 just a number to show the logic. If you picked 318,000 instead, then please update the code accordingly. There are 2 places needed to change but you only updated one Smiley.

This time, please upload the correct fix, or give me a review permission at least. I need only one minute to tell if the code works or not.
halibit
Legendary
*
Offline Offline

Activity: 1596
Merit: 1006



View Profile
May 05, 2014, 09:06:57 AM
 #4363


All exchange and pools are informed.
Mintpal sent note they are updated wallet.

Poloniex I don't know, but I just test withdraw and it works fine.
Next I will send deposit.

Correct blocks will start continue after block 318000 with code:

      else if (nHeight <= 318000) // 0.01 block rewards (wrong logic as coin spec, but we need to keep it because it's already happened)
      {
      nSubsidy = (3100 - ((nHeight * 0.01) - 310000)) - 300000;
      }

      else
      {
      nSubsidy = (10000 - ((nHeight - 318000) * 0.01)) * COIN;
      if (nSubsidy <= 1000 * COIN) nSubsidy = 1000 * COIN; // Rest of blocks are 1000 coins. Then network working forever with stake blocks.
      }


Halibit, if you decide to use my code, use it correctly. I picked 320,000 just a number to show the logic. If you picked 318,000 instead, then please update the code accordingly. There are 2 places needed to change but you only updated one Smiley.

This time, please upload the correct fix, or give me a review permission at least. I need only one minute to tell if the code works or not.
I deside to use your code and you right about I should then ask final code.
So, here is whole code I will use:
Can you confirm?

Code:
// microCoin block size.
        int64 nSubsidy = 1 * COIN;
        if(nHeight < 10000)    
        {
                nSubsidy = 0.0001 * COIN; // Premining 1 coin. (10000 blocks * 0.0001 coins) = Total 1 coin. ** For network security purpose. (Needed with the fair launch).
        }
else if(nHeight >= 10000 && nHeight < 160000) // Launch start. Increasing block size on every blocks +1. ** Blocks: 1001 - 160000
        {
nSubsidy = nHeight * COIN;
}
else if (nHeight >= 310000 && nHeight <= 315000) // 310,000 block rewards, decreasing 0.01 on every block
{
nSubsidy = (310000 - ((nHeight - 310000) * 0.01)) * COIN;
}

else if (nHeight <= 318000) // 0.01 block rewards (wrong logic as coin spec, but we need to keep it because it's already happened)
{
nSubsidy = (3100 - ((nHeight * 0.01) - 310000)) - 300000;
}

else
{
nSubsidy = (10000 - ((nHeight - 318000) * 0.01)) * COIN;
if (nSubsidy <= 1000 * COIN) nSubsidy = 1000 * COIN; // Rest of blocks are 1000 coins. Then network working forever with stake blocks.
}


    return nSubsidy;
}
snguyen
Member
**
Offline Offline

Activity: 98
Merit: 10

One life. Live it.


View Profile WWW
May 05, 2014, 09:22:59 AM
 #4364


I deside to use your code and you right about I should then ask final code.
So, here is whole code I will use:
Can you confirm?

Code:
// microCoin block size.
        int64 nSubsidy = 1 * COIN;
        if(nHeight < 10000)    
        {
                nSubsidy = 0.0001 * COIN; // Premining 1 coin. (10000 blocks * 0.0001 coins) = Total 1 coin. ** For network security purpose. (Needed with the fair launch).
        }
else if(nHeight >= 10000 && nHeight < 160000) // Launch start. Increasing block size on every blocks +1. ** Blocks: 1001 - 160000
        {
nSubsidy = nHeight * COIN;
}
else if (nHeight >= 310000 && nHeight <= 315000) // 310,000 block rewards, decreasing 0.01 on every block
{
nSubsidy = (310000 - ((nHeight - 310000) * 0.01)) * COIN;
}

else if (nHeight <= 318000) // 0.01 block rewards (wrong logic as coin spec, but we need to keep it because it's already happened)
{
nSubsidy = (3100 - ((nHeight * 0.01) - 310000)) - 300000;
}

else
{
nSubsidy = (10000 - ((nHeight - 318000) * 0.01)) * COIN;
if (nSubsidy <= 1000 * COIN) nSubsidy = 1000 * COIN; // Rest of blocks are 1000 coins. Then network working forever with stake blocks.
}


    return nSubsidy;
}


Thank you for asking me this. I strongly believe this code will work as expected.

Best regards,
lunswor
Full Member
***
Offline Offline

Activity: 159
Merit: 100



View Profile WWW
May 05, 2014, 09:28:22 AM
 #4365


I deside to use your code and you right about I should then ask final code.
So, here is whole code I will use:
Can you confirm?

Code:
// microCoin block size.
        int64 nSubsidy = 1 * COIN;
        if(nHeight < 10000)    
        {
                nSubsidy = 0.0001 * COIN; // Premining 1 coin. (10000 blocks * 0.0001 coins) = Total 1 coin. ** For network security purpose. (Needed with the fair launch).
        }
else if(nHeight >= 10000 && nHeight < 160000) // Launch start. Increasing block size on every blocks +1. ** Blocks: 1001 - 160000
        {
nSubsidy = nHeight * COIN;
}
else if (nHeight >= 310000 && nHeight <= 315000) // 310,000 block rewards, decreasing 0.01 on every block
{
nSubsidy = (310000 - ((nHeight - 310000) * 0.01)) * COIN;
}

else if (nHeight <= 318000) // 0.01 block rewards (wrong logic as coin spec, but we need to keep it because it's already happened)
{
nSubsidy = (3100 - ((nHeight * 0.01) - 310000)) - 300000;
}

else
{
nSubsidy = (10000 - ((nHeight - 318000) * 0.01)) * COIN;
if (nSubsidy <= 1000 * COIN) nSubsidy = 1000 * COIN; // Rest of blocks are 1000 coins. Then network working forever with stake blocks.
}


    return nSubsidy;
}


Thank you for asking me this. I strongly believe this code will work as expected.

Best regards,

So were not going to have the fix until block 318000?
316000 should be fine in my opinion. There is only two pools out there with any hash rate, and it will take ages to reach 318000 with no miners.

Lets just get exchanges to freeze/fix the wallet and the two pools to update and we fix at block 316000. We can warn everyone not to send coins to the exchanges until the all confirm they are updated.

████→→       ● DeepOnion                                                                       ✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯ 
████→→       ● Tor integrated, 100% anonymous!                                       Get Your FREE Coins NOW!     
████→→       ● Free Airdrop! (No ICO, No Crowdfund)                       ✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯
reftop123
Sr. Member
****
Offline Offline

Activity: 250
Merit: 250


View Profile
May 05, 2014, 11:05:44 AM
 #4366

Block times are normal - difficulty dropping.
reftop123
Sr. Member
****
Offline Offline

Activity: 250
Merit: 250


View Profile
May 05, 2014, 02:02:27 PM
 #4367

I think what it is very good for coin, when devs, even in this situation, not annoys people with technical posts or explanations, etc.
Just not showing up. Really good!
MCR (OP)
Sr. Member
****
Offline Offline

Activity: 266
Merit: 250



View Profile WWW
May 05, 2014, 02:42:06 PM
 #4368

Hello again,

We used the fix posted here and tested it. (Thank you snguyen)

The wallet has been updated and will hard fork at block #318,000 (around 30 hours from now) back to its normal block rewards.

All major MRC exchanges and pools have been notified of the hard fork.

New source:
https://github.com/microcoinsource/microCoin_V2

Windows wallet:
http://www56.zippyshare.com/v/77357538/file.html

Thank you all for your patience and understanding.
Hilux74
Legendary
*
Offline Offline

Activity: 912
Merit: 1000



View Profile
May 05, 2014, 02:44:14 PM
 #4369

Hello again,

We used the fix posted here and tested it. (Thank you snguyen)

The wallet has been updated and will hard fork at block #318,000 (around 30 hours from now) back to its normal block rewards.

All major MRC exchanges and pools have been notified of the hard fork.

New source:
https://github.com/microcoinsource/microCoin_V2

Windows wallet:
http://www56.zippyshare.com/v/77357538/file.html

Thank you all for your patience and understanding.
Lol why bother switching to that account to make the announcement.  Just stay as Halibut.
Del137
Full Member
***
Offline Offline

Activity: 434
Merit: 100



View Profile
May 05, 2014, 02:48:05 PM
 #4370

Tnx for update!

Let's All who really support MRC help it as it help us and continue blocks calculation.

████          O W N R   W A L L E T          ████   VISA PREPAID CARD    ████  Use crypto to pay in stores with OWNR  ████
❱❱❱❱ ❱❱❱ ❱❱ ❱     Buy, send, receive and exchange crypto        VISA    mastercard   SPA    UnionPay     ❰ ❰❰ ❰❰❰ ❰❰❰❰
BLOG       TWITTER     ██ █▌█ ▌     Manage crypto and VISA card in OWNR Wallet app    ▐ █▐█ ██     REDDIT   YOUTUBE
luohuiao
Newbie
*
Offline Offline

Activity: 11
Merit: 0


View Profile
May 05, 2014, 02:55:51 PM
 #4371

I think alcurEx and microCoin need a proffesional team,that about coding and marketing.
There's a good start,but the abilities of development and advertisement are poor.
Can alcurEx use IPO funds to make much more effort? That's too long a way according to nowa situation.
Huh
Bansheroom
Sr. Member
****
Offline Offline

Activity: 434
Merit: 250


View Profile
May 05, 2014, 03:23:04 PM
 #4372

I think alcurEx and microCoin need a proffesional team,that about coding and marketing.
There's a good start,but the abilities of development and advertisement are poor.
Can alcurEx use IPO funds to make much more effort? That's too long a way according to nowa situation.
Huh

Microcoin had no premine and no IPO, so how should a professional team for Microcoin be financed?

Regarding to alcurex, part of the IPO is used to get the exchange coded, it would be nice if it goes faster, but there is no real reason to hurry things.
Better get it well done and secure, Poloniex has been hacked for the 2nd time already and is up some months only. At the time i write this 50% of what poloniex owes the users from the first hack is not even paid back. 2nd hack did little or no damage at all, but just because there was some luck involved. Do you want similar things happen to alcurex?

Always get cryptonews, free bitcoins, free altcoins and free mining opportunities: follow @Bansheroom on Twitter
Don007
Legendary
*
Offline Offline

Activity: 1050
Merit: 1007

Live like there is no tomorrow!


View Profile
May 05, 2014, 04:30:19 PM
Last edit: May 05, 2014, 04:45:19 PM by Don007
 #4373

Currently my client won't open. The old one doesn't, and the new one doesn't.

It does open, but it doesn't show up. It's running in the background. Does anyone know how to fix this?

Edit; it just show up. But itsn't synching yet.. Let's see.

Edit²: still isn't synching.

{Curently quite inactive as I'm really busy in my private life. I will get back soon!}

-> Your line here during my inactivity? Feel free to PM <-
Hilux74
Legendary
*
Offline Offline

Activity: 912
Merit: 1000



View Profile
May 05, 2014, 05:00:44 PM
 #4374

Currently my client won't open. The old one doesn't, and the new one doesn't.

It does open, but it doesn't show up. It's running in the background. Does anyone know how to fix this?

Edit; it just show up. But itsn't synching yet.. Let's see.

Edit²: still isn't synching.

If it is like my client, it takes about 20-30min before it is visible and usable.  Not sure why as neither the block chain nor my wallet are that large.  Just wait and it will eventually appear on screen and sync.
halibit
Legendary
*
Offline Offline

Activity: 1596
Merit: 1006



View Profile
May 05, 2014, 05:06:59 PM
 #4375

Hello again,

We used the fix posted here and tested it. (Thank you snguyen)

The wallet has been updated and will hard fork at block #318,000 (around 30 hours from now) back to its normal block rewards.

All major MRC exchanges and pools have been notified of the hard fork.

New source:
https://github.com/microcoinsource/microCoin_V2

Windows wallet:
http://www56.zippyshare.com/v/77357538/file.html

Thank you all for your patience and understanding.
Lol why bother switching to that account to make the announcement.  Just stay as Halibut.
Are you thinking I'm MCR? Cheesy
Del137
Full Member
***
Offline Offline

Activity: 434
Merit: 100



View Profile
May 05, 2014, 05:33:46 PM
Last edit: May 05, 2014, 05:48:36 PM by Del137
 #4376

Donno who MCR but sometimes i wish to give him friendly magic kick to appear and update more often  Grin

Also i'm sure MRC dont get any success without halibit efforts at all.

*UPD tested new wallet - synced fast (like 2 minutes), after i freed CPU from mining MRC   Roll Eyes

████          O W N R   W A L L E T          ████   VISA PREPAID CARD    ████  Use crypto to pay in stores with OWNR  ████
❱❱❱❱ ❱❱❱ ❱❱ ❱     Buy, send, receive and exchange crypto        VISA    mastercard   SPA    UnionPay     ❰ ❰❰ ❰❰❰ ❰❰❰❰
BLOG       TWITTER     ██ █▌█ ▌     Manage crypto and VISA card in OWNR Wallet app    ▐ █▐█ ██     REDDIT   YOUTUBE
randywald
Hero Member
*****
Offline Offline

Activity: 600
Merit: 500


View Profile
May 05, 2014, 05:56:13 PM
 #4377

My wallet stopped syncing at block 159999. I hope it will finish syncing. Can i do something except waiting?

Del137
Full Member
***
Offline Offline

Activity: 434
Merit: 100



View Profile
May 05, 2014, 05:57:36 PM
 #4378

My wallet stopped syncing at block 159999. I hope it will finish syncing. Can i do something except waiting?

Maybe try previous version (its still actual until block 318000) and after that - run newest one?

████          O W N R   W A L L E T          ████   VISA PREPAID CARD    ████  Use crypto to pay in stores with OWNR  ████
❱❱❱❱ ❱❱❱ ❱❱ ❱     Buy, send, receive and exchange crypto        VISA    mastercard   SPA    UnionPay     ❰ ❰❰ ❰❰❰ ❰❰❰❰
BLOG       TWITTER     ██ █▌█ ▌     Manage crypto and VISA card in OWNR Wallet app    ▐ █▐█ ██     REDDIT   YOUTUBE
randywald
Hero Member
*****
Offline Offline

Activity: 600
Merit: 500


View Profile
May 05, 2014, 06:07:39 PM
 #4379

I will try it, or can i just use the old blk0001.dat and blkindex.dat from version 2.1.1.1? At every wallet update i backed up the appdata directory of microcoin and deleted the files except wallet.dat and microcoin.coinf in that directory to resync all blocks...

Del137
Full Member
***
Offline Offline

Activity: 434
Merit: 100



View Profile
May 05, 2014, 06:08:31 PM
 #4380

I will try it, or can i just use the old blk0001.dat and blkindex.dat from version 2.1.1.1? At every wallet update i backed up the appdata directory of microcoin and deleted the files except wallet.dat and microcoin.coinf in that directory to resync all blocks...

hmm, never deleted any .DAT files during 3 updates, all work fine  Roll Eyes

████          O W N R   W A L L E T          ████   VISA PREPAID CARD    ████  Use crypto to pay in stores with OWNR  ████
❱❱❱❱ ❱❱❱ ❱❱ ❱     Buy, send, receive and exchange crypto        VISA    mastercard   SPA    UnionPay     ❰ ❰❰ ❰❰❰ ❰❰❰❰
BLOG       TWITTER     ██ █▌█ ▌     Manage crypto and VISA card in OWNR Wallet app    ▐ █▐█ ██     REDDIT   YOUTUBE
Pages: « 1 ... 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 [219] 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 »
  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!