Bitcoin Forum
April 27, 2024, 08:18:40 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 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 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 [159] 160 161 162 163 164 165 166 167 168 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 ... 220 »
  Print  
Author Topic: [ANN] [TRON] Positron Technologies - Upcoming Project Direction Change  (Read 323966 times)
BTCMILLIONAIRE
Hero Member
*****
Offline Offline

Activity: 1358
Merit: 834



View Profile
May 04, 2015, 12:44:46 AM
 #3161


Keep on pumping the coin - I will be happy to profit from it  Wink
fudding coin u own...wow thats new low  Cheesy
1714205920
Hero Member
*
Offline Offline

Posts: 1714205920

View Profile Personal Message (Offline)

Ignore
1714205920
Reply with quote  #2

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

Posts: 1714205920

View Profile Personal Message (Offline)

Ignore
1714205920
Reply with quote  #2

1714205920
Report to moderator
1714205920
Hero Member
*
Offline Offline

Posts: 1714205920

View Profile Personal Message (Offline)

Ignore
1714205920
Reply with quote  #2

1714205920
Report to moderator
kilo17
Legendary
*
Offline Offline

Activity: 980
Merit: 1001

aka "whocares"


View Profile
May 04, 2015, 12:49:45 AM
 #3162


Keep on pumping the coin - I will be happy to profit from it  Wink
fudding coin u own...wow thats new low  Cheesy

No fud-- I am invested and do not hype a coin based on Promises (been down that road before) , when there is a true RoadMap and Features I will hype it--- cheers

Bitcoin Will Only Succeed If The Community That Supports It Gets Support - Support Home Miners & Mining
SkyValeey
Hero Member
*****
Offline Offline

Activity: 560
Merit: 500


View Profile
May 04, 2015, 01:28:59 AM
 #3163

Hey, this twitt is nothing interesting. I don't know why you're posting it here, it's really boring twitt imho.
This is pretty noob twitt because real problem in crypto is ico.
BTCMILLIONAIRE
Hero Member
*****
Offline Offline

Activity: 1358
Merit: 834



View Profile
May 04, 2015, 01:49:24 AM
 #3164

Hey, this twitt is nothing interesting. I don't know why you're posting it here, it's really boring twitt imho.
This is pretty noob twitt because real problem in crypto is ico.
must be his own twitter  Cheesy
kilo17
Legendary
*
Offline Offline

Activity: 980
Merit: 1001

aka "whocares"


View Profile
May 04, 2015, 01:53:56 AM
 #3165

I am humbled by all of the great investors and whales -- my apologies -- us noobs need to watch and learn

Bitcoin Will Only Succeed If The Community That Supports It Gets Support - Support Home Miners & Mining
VirtualCloudMining
Full Member
***
Offline Offline

Activity: 221
Merit: 102



View Profile
May 04, 2015, 02:50:49 AM
 #3166

The coin Neutron have had trouble with synching. This is claimed to be becaused of code taken from this coin Positron. Here is tips to correct the code.

I wonder if the new wallet has a higher version number and if it checks that nodes have the new wallet.

it doesn't check obviously.

and a lil easier advice to everybody: always delete peers.dat after you close the wallet.

that way next launch you'll feed it from seednode and not some shitnodes
Actually it does check. 

https://github.com/teamneutron/Neutron/blob/master/src/version.h#L39

The problem is that this dynamic staking code that came out of Tron is broken/not implemented correctly.  I am surprised Tron has not started having issues yet.

Check it out:
https://github.com/teamneutron/Neutron/blob/master/src/main.cpp#L1036

Do you see the problem in that code?  It is checking the block height against pindexBest, which is a pointer to the tip of the chain.  But that varies as you sync.  If you get a bunch of other block inventory for your node to check, its always going to be trying to assign a reward based on what it thinks the tip of the chain is, not the relative height of a particular block.

i'm not into C at all, simply logically if it connects to any nodes any version
and even ignores connect=ip option, that means there is NO check actually,
i see constants in code, but behavior doesn't follow.
and btw, how many version already have the same protocol 60014
Actually thats completely and totally wrong.  The existing wallet respects connect= correctly.  The previous version was protocol version 60013 with a min required version of 209 as seen here: https://bitbucket.org/neutroncrypto/neutron/src/880cb18109884e1168e76a3d96fde8987a38c38e/src/version.h?at=master#cl-39.

The new seed/checkpointing/other nodes will disconnect anyone who is not on protocol 60014.

Can simply replace the dynamic award at a constant? This will solve the problem?
Don't need to do that, its one of the features of this coin that makes it attractive.  Just need to modify the reward methods to accept a height parameter and pass the (previous block index + 1) to it from checkblock etc.
cryptowest
Sr. Member
****
Offline Offline

Activity: 437
Merit: 250


View Profile
May 04, 2015, 03:20:48 AM
 #3167

The coin Neutron have had trouble with synching. This is claimed to be becaused of code taken from this coin Positron. Here is tips to correct the code.


I originally added a parameter to the function to pass the block height, but later found it wasn't needed during my testing.

TRON hasn't had any syncing problems, we had a short fork during the POW phase but I resolved it with ocminer from Suprnova within a few minutes.

The more likely problem for your sync is the outgoing maxconnections variable in net.cpp. The defaults are really low and seednodes and pools should always increase them. Neutron's default outgoing connection # is only 16:

https://github.com/teamneutron/Neutron/blob/master/src/net.cpp#L28

The reason a lot of these high POS coins are having problems connecting or syncing is because so many wallets are staking now and demanding more node connections. That variable needs to be increased to like 1024 for your main seed nodes, then recompile.



Good luck.
GetGuap$
Member
**
Offline Offline

Activity: 107
Merit: 10


View Profile
May 04, 2015, 03:55:06 AM
 #3168

Let's hear the new update Smiley Huh Kiss
BTCMILLIONAIRE
Hero Member
*****
Offline Offline

Activity: 1358
Merit: 834



View Profile
May 04, 2015, 03:58:52 AM
 #3169

Let's hear the new update Smiley Huh Kiss
yes we r ready to pump this 200k  Cool
Byter88
Full Member
***
Offline Offline

Activity: 188
Merit: 100


View Profile
May 04, 2015, 04:01:36 AM
 #3170

Let's hear the new update Smiley Huh Kiss

Still early in Europe, he said tonight, patience!
BTCMILLIONAIRE
Hero Member
*****
Offline Offline

Activity: 1358
Merit: 834



View Profile
May 04, 2015, 04:05:07 AM
 #3171

Let's hear the new update Smiley Huh Kiss

Still early in Europe, he said tonight, patience!
hes in us ct timezone i believe
Targetbit
Sr. Member
****
Offline Offline

Activity: 323
Merit: 250


View Profile
May 04, 2015, 04:07:23 AM
 #3172

Let's hear the new update Smiley Huh Kiss
yes we r ready to pump this 200k  Cool

No need to pump. It will go itself.
Byter88
Full Member
***
Offline Offline

Activity: 188
Merit: 100


View Profile
May 04, 2015, 04:19:39 AM
 #3173

Let's hear the new update Smiley Huh Kiss
yes we r ready to pump this 200k  Cool

No need to pump. It will go itself.

Real support will come after press release, too much fake support right now, it could dip fast any minute.
orryde
Sr. Member
****
Offline Offline

Activity: 476
Merit: 500


Re-Evolution


View Profile
May 04, 2015, 04:26:05 AM
 #3174

Ready for the announcement so I can take a nice ride on this one. TRON



                                                                    ▄▄▄▄▄▄▄▄▄
                                                                   ▄█████████                  ██████
                                                                   ███    ███                 ██   ██
         ████████████████████████████████████████████████████████████    ██████████████████████   ████████▀
        ██            ▄█          █▄                 █▄          ███            █▄          █        ▄██▀
       ██            ██           ███                ██   ▄▄▄▄▄  ███            ██   ▄▄▄▄▄  ██   █████▀
       ██   █████    ██   ████   ████   ██     ██    ██   ▀▀▀▀   ██    ██████   ██   ▀▀▀▀   ██   ████▀
      ██    █████   ██    ████   ████   ██     ██   ██          ███   ██████   ██          ██   ████▀
      ██            ██           ███   ███    ███   ██    ▀▀▀▀▀▀███            ██    ▀▀▀▀▀▀██   ▀▀▀████
      ███           ██▄            █   ██     ██    ██▄          █             ▀█▄          ██      ███
       █████████   ████████████████████████████████████████████████████████████████████████████████████
      ██           ██
    ██▀           ███
  ████████████████▀
Betting on e-Sports with Steam Items & Crypto
████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████
■■■■■ GBT Loyalty Reward Program Steam Marketplace Sportsbetting ■■■■■
cryptowest
Sr. Member
****
Offline Offline

Activity: 437
Merit: 250


View Profile
May 04, 2015, 05:39:26 AM
 #3175

Sorry, I'm still working. its not very brofessional but if you want to come watch you can. I'm in US Mountain time so its 11:38pm here... I'll be up until I finish.
https://docs.google.com/document/d/1DEPZdPNkQCZ2kUXu1cjm1tWEjRtpMRSOnZHU3Q4U4UM/edit?usp=sharing
Lovethecoins
Hero Member
*****
Offline Offline

Activity: 658
Merit: 500


View Profile
May 04, 2015, 05:50:50 AM
 #3176

Sorry, I'm still working. its not very brofessional but if you want to come watch you can. I'm in US Mountain time so its 11:38pm here... I'll be up until I finish.
https://docs.google.com/document/d/1DEPZdPNkQCZ2kUXu1cjm1tWEjRtpMRSOnZHU3Q4U4UM/edit?usp=sharing

lots of eyes watching Smiley Keep it up man!

BTCMILLIONAIRE
Hero Member
*****
Offline Offline

Activity: 1358
Merit: 834



View Profile
May 04, 2015, 05:55:21 AM
 #3177

POSITRON DIRECTOR  Cool Cool Cool
RedKeep
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
May 04, 2015, 05:58:04 AM
 #3178

http://puu.sh/hAND5/30e4ded175.jpg

 Huh whatever it is looks cool


iqlimasyadiqa
Legendary
*
Offline Offline

Activity: 1596
Merit: 1011



View Profile
May 04, 2015, 06:17:53 AM
 #3179

Fuck Yeah! this is gonna happen!

what happen baby  Grin
cryptovault8
Newbie
*
Offline Offline

Activity: 32
Merit: 0


View Profile
May 04, 2015, 06:28:22 AM
 #3180

nothing just yet sugar, I'm just wired on caffeine waiting with hope Cheesy
Pages: « 1 ... 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 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 [159] 160 161 162 163 164 165 166 167 168 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 ... 220 »
  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!