Bitcoin Forum
May 04, 2024, 12:28:03 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Poll
Question: Would you like fly to rebrand to "Las Vegas" coin, and do a swap and add masternodes, POS would be 25%, Min stake time 1 day. Pow for 20,000 blocks, mining quark. Reward .5 "Las Vegas" per block.
Yes, all of the above as stated.
Yes, I approve all of the above, but POS to be 50%
Yes, I would like all of the above but NO POW, POS only.
Yes, I would like all of the above , but I would like 2 "Las Vegas coins" for 1 fly.
Yes, but I want 50% POS and 4 "Las Vegas" coins to for 1 fly coin.
Yes, but I want 4 "Las Vegas" coins for 1 fly coin. POS to be 25%.
NO, do nothing. Continue to just develop fly.

Pages: « 1 ... 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 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 [104] 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 »
  Print  
Author Topic: FLY COIN ANN.Swapping to "Las Vegas"coin,+Masternodes,Darksend,Stealth, instantX  (Read 186119 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.
vegasguy (OP)
Legendary
*
Offline Offline

Activity: 1610
Merit: 1003


"Yobit pump alert software" Link in my signature!


View Profile
November 15, 2016, 08:36:42 PM
Last edit: November 15, 2016, 11:54:49 PM by vegasguy
 #2061

Ill double check the pos rate again. I do agree, the math is way off. Ok im on it. Give us time to put a fix out. I may even consider a slightly higher POS% rate.



UPDATE: Ok.. We have looked at the code and there is certainly a major under calculation. It should be 10%, and is actually about .8%. So not even 1%. But we are fixing now. Thanks

Vegas

I want to make sure everyone knows that I just released my software called "Yobit pump alert". THis is custom software that uses an algo to detect the start of a pump here on yobit, the second it starts. YOu can even filter the coins you see by price. Most pumps start less than 100 sats , so you can easily filter the cheap coins, so they are the only ones displayed Smiley https://bitcointalk.org/index.php?topic=1945937.msg20241953#msg20241953
1714825683
Hero Member
*
Offline Offline

Posts: 1714825683

View Profile Personal Message (Offline)

Ignore
1714825683
Reply with quote  #2

1714825683
Report to moderator
"If you don't want people to know you're a scumbag then don't be a scumbag." -- margaritahuyan
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
vegasguy (OP)
Legendary
*
Offline Offline

Activity: 1610
Merit: 1003


"Yobit pump alert software" Link in my signature!


View Profile
November 16, 2016, 05:11:52 AM
 #2062


Flycoin wallet 2.4.2 (Mandatory update!!).


POS fix at block 90150 (VERY SOON!!!!)

Update NOW!!!!!!!!!!!!
*Only change/fix is fixes the POS to pay 10%.

Vegas

I want to make sure everyone knows that I just released my software called "Yobit pump alert". THis is custom software that uses an algo to detect the start of a pump here on yobit, the second it starts. YOu can even filter the coins you see by price. Most pumps start less than 100 sats , so you can easily filter the cheap coins, so they are the only ones displayed Smiley https://bitcointalk.org/index.php?topic=1945937.msg20241953#msg20241953
indika
Sr. Member
****
Offline Offline

Activity: 489
Merit: 250


View Profile
November 16, 2016, 06:46:27 AM
 #2063

im new to criptocurrency i have little question if i opend my fly wallet and stay online with network is there a any benefit for me.
vegasguy (OP)
Legendary
*
Offline Offline

Activity: 1610
Merit: 1003


"Yobit pump alert software" Link in my signature!


View Profile
November 16, 2016, 07:34:39 AM
 #2064

im new to criptocurrency i have little question if i opend my fly wallet and stay online with network is there a any benefit for me.

Yes, to get the most benefits, you must have your wallet online and unlocked 24/7. Your first stake rewards wont start until 7 days.

Vegas

I want to make sure everyone knows that I just released my software called "Yobit pump alert". THis is custom software that uses an algo to detect the start of a pump here on yobit, the second it starts. YOu can even filter the coins you see by price. Most pumps start less than 100 sats , so you can easily filter the cheap coins, so they are the only ones displayed Smiley https://bitcointalk.org/index.php?topic=1945937.msg20241953#msg20241953
cdajdk
Newbie
*
Offline Offline

Activity: 35
Merit: 0


View Profile
November 16, 2016, 01:25:14 PM
Last edit: November 16, 2016, 02:28:57 PM by cdajdk
 #2065

Doesn't want to compile on linux.    src/main.cpp line 1305.   Doesn't like mix between floating point (double) and CBigNum which looks to be integer based.  Could static_cast to a long long but not sure if you will lose precision doing that.

possible solution:

CBigNum bnSubsidy = CBigNum(static_cast<long long>( nCoingAge * (posRate_13 / maxTimesPerYear_13)));

Also,  could change the definitions of  postRate_13 and maxTimesPerYear_13  to be "const".    Lots of warnings and side effects of current definitions.

-JK
BTC-BTC-BTC
Legendary
*
Offline Offline

Activity: 1582
Merit: 1001


www.neutroncoin.com


View Profile
November 16, 2016, 07:09:15 PM
 #2066


Flycoin wallet 2.4.2 (Mandatory update!!).


POS fix at block 90150 (VERY SOON!!!!)

Update NOW!!!!!!!!!!!!
*Only change/fix is fixes the POS to pay 10%.

Vegas

Updated to 2.4.2 and it has been running very smooth so far.

Thanks,
HiggsBosunBlues
Member
**
Offline Offline

Activity: 103
Merit: 10


View Profile
November 16, 2016, 07:47:22 PM
 #2067

Doesn't want to compile on linux.    src/main.cpp line 1305.   Doesn't like mix between floating point (double) and CBigNum which looks to be integer based.  Could static_cast to a long long but not sure if you will lose precision doing that.

possible solution:

CBigNum bnSubsidy = CBigNum(static_cast<long long>( nCoingAge * (posRate_13 / maxTimesPerYear_13)));

Also,  could change the definitions of  postRate_13 and maxTimesPerYear_13  to be "const".    Lots of warnings and side effects of current definitions.

-JK

Thanks for this, I've hit the same problem.

I'll try your suggestion. Cheers.
cryptotech
Sr. Member
****
Offline Offline

Activity: 393
Merit: 500



View Profile WWW
November 16, 2016, 08:19:07 PM
 #2068

Doesn't want to compile on linux.    src/main.cpp line 1305.   Doesn't like mix between floating point (double) and CBigNum which looks to be integer based.  Could static_cast to a long long but not sure if you will lose precision doing that.

possible solution:

CBigNum bnSubsidy = CBigNum(static_cast<long long>( nCoingAge * (posRate_13 / maxTimesPerYear_13)));

Also,  could change the definitions of  postRate_13 and maxTimesPerYear_13  to be "const".    Lots of warnings and side effects of current definitions.

-JK

Thanks for this, I've hit the same problem.

I'll try your suggestion. Cheers.

I am trying to build daemon and running into compile errors as well.  vegasguy could you please update source.  Thanks
presstab
Legendary
*
Offline Offline

Activity: 1330
Merit: 1000


Blockchain Developer


View Profile
November 16, 2016, 10:00:57 PM
 #2069

Yeah i see it too. Its actually a big no no to use doubles in the protocol level math. There is a reason why the code was designed that way, different compilers and systems can treat doubles differently (or so I have read) and this could lead to two different systems disagreeing over the math and forking. Its always better to use an int that is multiplied by 100 and then divide it by 100 at the end.

Will stand by for solution.

Projects I Contribute To: libzerocoin | Veil | PIVX | HyperStake | Crown | SaluS
vegasguy (OP)
Legendary
*
Offline Offline

Activity: 1610
Merit: 1003


"Yobit pump alert software" Link in my signature!


View Profile
November 17, 2016, 02:08:07 AM
 #2070

Ok I hate putting you guys through such quick updates Sad   Ok.. Please give me some time.

Vegas

I want to make sure everyone knows that I just released my software called "Yobit pump alert". THis is custom software that uses an algo to detect the start of a pump here on yobit, the second it starts. YOu can even filter the coins you see by price. Most pumps start less than 100 sats , so you can easily filter the cheap coins, so they are the only ones displayed Smiley https://bitcointalk.org/index.php?topic=1945937.msg20241953#msg20241953
Woody20285
Legendary
*
Offline Offline

Activity: 1218
Merit: 1002


Supporting DMD, ERC & PIO


View Profile
November 17, 2016, 04:10:48 AM
 #2071

My understanding is the push of the code to
the git has been done. If anyone is having a
problem compiling now, let Vegas know right away.
midnight_miner
Hero Member
*****
Offline Offline

Activity: 652
Merit: 500


We only want the FACTS!


View Profile WWW
November 17, 2016, 04:35:33 AM
 #2072


...

 There is a reason why the code was designed that way, different compilers and systems can treat doubles differently (or so I have read) and this could lead to two different systems disagreeing over the math and forking. Its always better to use an int that is multiplied by 100 and then divide it by 100 at the end.

Will stand by for solution.

I agree. Especially with:

Quote
Its always better to use an int that is multiplied by 100 and then divide it by 100 at the end.

Experience has taught me that whole numbers, float, real, etc. cause different results on different platforms.  That is why you only see integer math in finance and industrial process control calculations in 'qualified' code.
 
Griffith
Legendary
*
Offline Offline

Activity: 1400
Merit: 1000


View Profile
November 17, 2016, 05:28:31 AM
Last edit: November 17, 2016, 06:08:56 AM by Griffith
 #2073

Yeah i see it too. Its actually a big no no to use doubles in the protocol level math. There is a reason why the code was designed that way, different compilers and systems can treat doubles differently (or so I have read) and this could lead to two different systems disagreeing over the math and forking. Its always better to use an int that is multiplied by 100 and then divide it by 100 at the end.

Will stand by for solution.

deleted my last comment. will just retype new stance now.

my point about truncating a double back to an int will always result in the same number is correct.
however, presstab is also correct that two systems can disagree over the math. It is the original int that causes the trouble. The conversion from int to double may result in the compiler rounding the int to another value if it thinks it is needed before converting it into a double. The closer you are to zero the less likely this int rounding is going to occur (that rule doesnt apply to values between 0 and 1 or between -1 and 0).

i did not know that the compiler would ever round the int off.

i found the answer here: http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2014/n4296.pdf

will adjust code accordingly.


thanks for pointing this out. i need to go change something else i coded recently now too XD


NOTE: always feel free to make a commit and request a merge if you see something that should be changed
vegasguy (OP)
Legendary
*
Offline Offline

Activity: 1610
Merit: 1003


"Yobit pump alert software" Link in my signature!


View Profile
November 17, 2016, 04:17:21 PM
 #2074

Ok here is the new Windows Binary with Griffiths correction. Sorry for the trouble everyone.

V2.4.3.0



I want to make sure everyone knows that I just released my software called "Yobit pump alert". THis is custom software that uses an algo to detect the start of a pump here on yobit, the second it starts. YOu can even filter the coins you see by price. Most pumps start less than 100 sats , so you can easily filter the cheap coins, so they are the only ones displayed Smiley https://bitcointalk.org/index.php?topic=1945937.msg20241953#msg20241953
Limx Dev
Copper Member
Legendary
*
Offline Offline

Activity: 2324
Merit: 1348



View Profile
November 17, 2016, 04:46:35 PM
 #2075

Ok here is the new Windows Binary with Griffiths correction. Sorry for the trouble everyone.

V2.4.3.0




I think i have lose my coinage with a wrong staking calcultion or?



~ 120 days with 2000 Fly = ~ 233 Fly (35%) 

Bitcore BTX - a UTXO fork of Bitcoin - since 2017
___██ WebSite
██ Telegram
___██ Github
██ Github - Releases/ Wallets
___██ SBTX Pancakeswap
██ ChainzID Explorer
___██ UTXO fork
██ Coinmarketcap.com
vegasguy (OP)
Legendary
*
Offline Offline

Activity: 1610
Merit: 1003


"Yobit pump alert software" Link in my signature!


View Profile
November 17, 2016, 06:00:31 PM
 #2076

Chris, it changed to 10% POS and the superblock frequency is MUCH higher. I need to edit the OP to reflect the POS% change. Even though its 10%, the superblocks will make the rewards MUCH higher.

Vegas

I want to make sure everyone knows that I just released my software called "Yobit pump alert". THis is custom software that uses an algo to detect the start of a pump here on yobit, the second it starts. YOu can even filter the coins you see by price. Most pumps start less than 100 sats , so you can easily filter the cheap coins, so they are the only ones displayed Smiley https://bitcointalk.org/index.php?topic=1945937.msg20241953#msg20241953
Limx Dev
Copper Member
Legendary
*
Offline Offline

Activity: 2324
Merit: 1348



View Profile
November 17, 2016, 06:06:14 PM
 #2077

Chris, it changed to 10% POS and the superblock frequency is MUCH higher. I need to edit the OP to reflect the POS% change. Even though its 10%, the superblocks will make the rewards MUCH higher.

Vegas

Okay thank you but 10 % is than 66,5 Fly. I have received 5 Fly with superblocks.

Bitcore BTX - a UTXO fork of Bitcoin - since 2017
___██ WebSite
██ Telegram
___██ Github
██ Github - Releases/ Wallets
___██ SBTX Pancakeswap
██ ChainzID Explorer
___██ UTXO fork
██ Coinmarketcap.com
vegasguy (OP)
Legendary
*
Offline Offline

Activity: 1610
Merit: 1003


"Yobit pump alert software" Link in my signature!


View Profile
November 17, 2016, 06:48:52 PM
 #2078

The superblocks makes the % MUCH more than 10%. My superblocks have been non stop. The superblocks just started in the last 2 days, please give more time.

When Presstab updates to 2.4.3.0 on his explorer, it will actually show the superblocks and average POS rate. It will be MUCH higher than 10%.




Vegas




I want to make sure everyone knows that I just released my software called "Yobit pump alert". THis is custom software that uses an algo to detect the start of a pump here on yobit, the second it starts. YOu can even filter the coins you see by price. Most pumps start less than 100 sats , so you can easily filter the cheap coins, so they are the only ones displayed Smiley https://bitcointalk.org/index.php?topic=1945937.msg20241953#msg20241953
cryptotech
Sr. Member
****
Offline Offline

Activity: 393
Merit: 500



View Profile WWW
November 17, 2016, 08:30:44 PM
 #2079

Flycoin Wallet Updated
You must first register to use faucets.  More faucets will be added soon.  If you would like your coin to have a faucet on TheCryptoChat contact us.

FlyCoin
Up to 0.03 FLY every 30 minutes

crazyivan
Legendary
*
Offline Offline

Activity: 1652
Merit: 1007


DMD Diamond Making Money 4+ years! Join us!


View Profile
November 18, 2016, 05:13:08 PM
 #2080

Both Avast and my antikeylogger recognize this new version as a threat and immediately delete it.

Also, do we have a functional exchange or not?

For security, your account has been locked. Email acctcomp15@theymos.e4ward.com
Pages: « 1 ... 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 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 [104] 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 »
  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!