Bitcoin Forum
May 04, 2024, 05:20:26 AM *
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 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 ... 119 »
  Print  
Author Topic: [ANN] Orbitcoin v1.6.3.0 ~ NeoScrypt ~ Green Stake ~ 10 Years Old  (Read 200999 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.
ghostlander (OP)
Legendary
*
Offline Offline

Activity: 1239
Merit: 1020


No surrender, no retreat, no regret.


View Profile WWW
May 16, 2014, 09:48:45 PM
 #21

The current code tries to combine inputs only if generating input is above split age (nStakeMinAge + nStakeMaxAge). It is the only condition when txNew.vout.size() == 2. The 1st vout is reserved always. vout.size() == 2 means one actual output. vout.size() == 3 means two actual outputs, i.e. stake split.

This patch fixes this issue as well as stake splits to amounts below the combining threshold. This kind of fragmentation isn't necessary. Inputs less than 50 ORB won't be halved. Works fine.


So i not understand why we need this check about 2 outputs?

This requirement comes from PPC. The reasons behind it are unclear, so you may want to ask Sunny King. Maybe he didn't want input combining to work our way, though PPC uses this feature very occasionally as there is no generation threshold. Even if a generating input is very small and there is nothing available to combine it with, a PoS block is produced still.

"If you've got a problem and have to spread some coins to make it go away, you've got no problem. You've got an expence." ~ Phoenixcoin (PXC) and Orbitcoin (ORB) and Halcyon (HAL)
Once a transaction has 6 confirmations, it is extremely unlikely that an attacker without at least 50% of the network's computation power would be able to reverse it.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
Mad_Max
Hero Member
*****
Offline Offline

Activity: 894
Merit: 1001


View Profile
May 17, 2014, 03:04:03 PM
Last edit: May 17, 2014, 04:25:30 PM by Mad_Max
 #22

If 1st vout is reserved then it is clear this check (txNew.vout.size() == 2) is a reason for small (<20) inputs not staking at all (at least until >20 days old).

if PPC not have any minimum stake requirements(and PoS reward is % of coins-days, not fixed), then I  understand why Sunny King made ​​such a check. It allow to "glue" only very small inputs. And "small" is dynamic criteria (based on current PoS difficulty and mining activity) not static limit. If input manages to generate PoS blocks before reaching max weight then it mean it is NOT very small. And if it exceed max coin age before generating PoS - then it is probable too small for current diff and better to combine few small inputs into larger one.

I thinks on ORB with fixed minimum stake amount and fixed PoS reward we not need this: because if program running this part of code then it mean we already know that  input is too small (<20 ORBs) and it needed to combine them. Otherwise it can not create PoS block in principle - no matter how long it tries, and will only waste CPU resources in futile attempts (generating PoS kernels but always fails at full blocks).
But your last patch should fix this too. (because all small input < 50 will have txNew.vout.size() == 2 not matter input coin age)

Can you upload recompiled binaries with this last patch? Or may be better if someone tell what could be the cause of the error in my own compiled version:
I compile 1.4.1 myself and it work fine(and prev 1.3.0 and 1.3.2 OK too), but with 1.4.2 i am getting errors for some unknown reason (i use exactly same compiler and external libs only replace ORB source and libs included with it like levelDB).
It compile OK but right after start and loading block database and wallet client produce such error:


Funny thing: despite this error message application in the background actually works just fine - responding to the network requests, downloads the new blocks, receives transaction, mining also works, etc.
But until clicking on the OK button - then immediately aborts/crash.

He знaя пoкoя и oтдыxa, Пpи лyннoм и coлнeчнoм cвeтe, Mы дeлaeм дeньги из вoздyxa, Чтoб cнoвa cпycтить иx нa вeтep!
ghostlander (OP)
Legendary
*
Offline Offline

Activity: 1239
Merit: 1020


No surrender, no retreat, no regret.


View Profile WWW
May 17, 2014, 05:02:09 PM
 #23

Can you upload recompiled binaries with this last patch? Or may be better if someone tell what could be the cause of the error in my own compiled version:
I compile 1.4.1 myself and it work fine(and prev 1.3.0 and 1.3.2 OK too), but with 1.4.2 i am getting errors for some unknown reason (i use exactly same compiler and external libs only replace ORB source and libs included with it like levelDB).

I'll make one or two additional patches before releasing an update. Have you re-built the transaction data base after switching to v1.4.2.0 by bootstrapping or re-downloading? The old one lacks metadata needed by the new code, so it throws exceptions and crashes.

"If you've got a problem and have to spread some coins to make it go away, you've got no problem. You've got an expence." ~ Phoenixcoin (PXC) and Orbitcoin (ORB) and Halcyon (HAL)
Mad_Max
Hero Member
*****
Offline Offline

Activity: 894
Merit: 1001


View Profile
May 17, 2014, 05:37:14 PM
 #24

Yes, i re-download entire database from scratch after upgrading from 1.4.1 to 1.4.2. (BTW this time it was significantly faster ~ 8-9 hours instead of ~ 20 hours with 1.4.1 and i notice what it use second CPU core from time to time, not strict 1 core as was with 1.4.1. You already add partial multi-threading support?)

And your precompiled binary work fine on same computer (with same datafolder). This problem only if i compile myself from source...
Probable it somehow affected by fact what you configure 1.4.2 for static linking(just one .exe) while 1.4.1 was dynamically linked (with use of external .dll's)
I will try recompile 1.4.2 with dynamic linking to check if it change anything...

He знaя пoкoя и oтдыxa, Пpи лyннoм и coлнeчнoм cвeтe, Mы дeлaeм дeньги из вoздyxa, Чтoб cнoвa cпycтить иx нa вeтep!
ghostlander (OP)
Legendary
*
Offline Offline

Activity: 1239
Merit: 1020


No surrender, no retreat, no regret.


View Profile WWW
May 18, 2014, 07:01:38 AM
 #25

Yes, i re-download entire database from scratch after upgrading from 1.4.1 to 1.4.2. (BTW this time it was significantly faster ~ 8-9 hours instead of ~ 20 hours with 1.4.1 and i notice what it use second CPU core from time to time, not strict 1 core as was with 1.4.1. You already add partial multi-threading support?)

I have reduced message polling latency from conservative 100ms to fast 20ms and disabled the ACP checks during initial block chain downloads. Now orb-msghand thread processes data fast enough to keep up with orb-net thread supplying it.

"If you've got a problem and have to spread some coins to make it go away, you've got no problem. You've got an expence." ~ Phoenixcoin (PXC) and Orbitcoin (ORB) and Halcyon (HAL)
dearbesz
Sr. Member
****
Offline Offline

Activity: 375
Merit: 250


View Profile
May 18, 2014, 07:12:29 AM
 #26

wow!!!orbitcoins is funtastic by collecting any coin,this is really impressive...
Mad_Max
Hero Member
*****
Offline Offline

Activity: 894
Merit: 1001


View Profile
May 18, 2014, 01:01:39 PM
Last edit: May 18, 2014, 01:36:03 PM by Mad_Max
 #27

I recompile 1.4.2 with dynamic link dll's. Do not know why - but it works: application run fine without previous errors, while statically linked throw errors right after startup.
Patch for staking and combining for small inputs begins working too.

Although with the current increase of PoS difficulty the probability of finding blocks for small input becoming low - after ~12 hours wallet could only create 2 PoS blocks by staking 35 small inputs (all with coin ages between 10 and 15 days, ~2500 weight total).

He знaя пoкoя и oтдыxa, Пpи лyннoм и coлнeчнoм cвeтe, Mы дeлaeм дeньги из вoздyxa, Чтoб cнoвa cпycтить иx нa вeтep!
Cor2
Hero Member
*****
Offline Offline

Activity: 595
Merit: 500


View Profile
May 19, 2014, 05:49:11 PM
 #28

....But ALL of my ~80 PoS blocks was generated by inputs >= 20 ORBs only.
And no single PoS block for inputs < 20 ORBs.
I believe that I finally got one PoS block from a series of just over 10 ORB inputs, all around 20 days old (just over 150 weight).
I saw that with the current diff (0.003) that inputs around that weight start to stake, earlier diff was over 0.005 and I saw even 20 ORB inputs with weight of 190 still had not staked yet.
Initially diff was 0.0002 and inputs around 80-90 weight were staking reliably as soon as they got 9 days old.
Ghostlander, are inputs now able to stake after 5 days?

SYNC: Sd3XBRmhrrr39Wj4rtjb3YAkwWvCze44BZ                    ORB: odyWi677JDQy7Gc6Nv6kCdnajmScqgTkDE       Honest pools (payout matching calculation):
TransferWise: International money transfer for 1%fee        Doge to the moon! D9FGY7Bhwbj2jrnk7v8VR47HTu7vfVu1gV         Nut2pools and Steadymining
Mad_Max
Hero Member
*****
Offline Offline

Activity: 894
Merit: 1001


View Profile
May 19, 2014, 08:02:16 PM
 #29

I believe that I finally got one PoS block from a series of just over 10 ORB inputs, all around 20 days old (just over 150 weight).
Yes it was expected. if you read carefully my discussion with the ghostlander above, then there we found out the reason why small inputs(<20 ORBs) could not combine and generates PoS blocks now: because combining was allowed only for blocks with 2 outputs (1 real + 1 output always reversed). So if input age < maximum coins age (=20 days now) then wallet try to split block, this leads to 3 outputs = 2 reals(block split into 2 halves) + 1 reversed and rejected by this criteria.
But if small input reach maximum coin age then wallet NOT try to split them = only 2 outputs = small inputs combining works for such inputs. This is your case.
Latest patch (will be included in next version) fix this and allow combining for any small inputs (> minimum coin age) by preventing splitting for inputs <50 ORBs.

He знaя пoкoя и oтдыxa, Пpи лyннoм и coлнeчнoм cвeтe, Mы дeлaeм дeньги из вoздyxa, Чтoб cнoвa cпycтить иx нa вeтep!
ghostlander (OP)
Legendary
*
Offline Offline

Activity: 1239
Merit: 1020


No surrender, no retreat, no regret.


View Profile WWW
May 20, 2014, 02:04:26 AM
 #30

Initially diff was 0.0002 and inputs around 80-90 weight were staking reliably as soon as they got 9 days old.
Ghostlander, are inputs now able to stake after 5 days?

Inputs produced after block #650K stake after 5 days. Older inputs stake after 9 days.

"If you've got a problem and have to spread some coins to make it go away, you've got no problem. You've got an expence." ~ Phoenixcoin (PXC) and Orbitcoin (ORB) and Halcyon (HAL)
ghostlander (OP)
Legendary
*
Offline Offline

Activity: 1239
Merit: 1020


No surrender, no retreat, no regret.


View Profile WWW
May 20, 2014, 09:44:43 PM
 #31

v1.4.2.1 uploaded. Optimised staking for small inputs, addnode and getaddednodeinfo RPC commands implemented, byte counters for getpeerinfo added. This is an optional upgrade.

"If you've got a problem and have to spread some coins to make it go away, you've got no problem. You've got an expence." ~ Phoenixcoin (PXC) and Orbitcoin (ORB) and Halcyon (HAL)
jjj0923
Sr. Member
****
Offline Offline

Activity: 266
Merit: 250


View Profile WWW
May 20, 2014, 09:58:51 PM
 #32

does anyone have a .conf file?

my wallet won't synch - no connections.

Lifeforce Pools : http://www.lifeforce.info
Earthcoin :http://eac.lifeforce.info -  Netcoin:  http://net.lifeforce.info - Hundred Coin Pool : http://100.lifeforce.info
Redoakcoin Pool : http://roc.lifeforce.info Guldencoin http://nlg.lifeforce.info also Worldcoin, Guncoin, NOBL, USDe, Tagcoin, Topcoin , Tagcoin , Credits, Goldcoin & Hobonickels
WyattDerp
Full Member
***
Offline Offline

Activity: 138
Merit: 100


View Profile
May 20, 2014, 10:02:01 PM
 #33

does anyone have a .conf file?

my wallet won't synch - no connections.

listen=1
maxconnections=100
server=1
daemon=1
rpcuser=wyatt
rpcpassword=derp
port=15298
rpcport=15299


That's all mine has..synced fine

jjj0923
Sr. Member
****
Offline Offline

Activity: 266
Merit: 250


View Profile WWW
May 20, 2014, 10:05:05 PM
 #34

does anyone have a .conf file?

my wallet won't synch - no connections.

listen=1
maxconnections=100
server=1
daemon=1
rpcuser=wyatt
rpcpassword=derp
port=15298
rpcport=15299


That's all mine has..synced fine

don;t you need nodes to synch?



Lifeforce Pools : http://www.lifeforce.info
Earthcoin :http://eac.lifeforce.info -  Netcoin:  http://net.lifeforce.info - Hundred Coin Pool : http://100.lifeforce.info
Redoakcoin Pool : http://roc.lifeforce.info Guldencoin http://nlg.lifeforce.info also Worldcoin, Guncoin, NOBL, USDe, Tagcoin, Topcoin , Tagcoin , Credits, Goldcoin & Hobonickels
bbr
Sr. Member
****
Offline Offline

Activity: 290
Merit: 250


View Profile
May 20, 2014, 10:20:48 PM
 #35

I have 43 credits of 2 ORB each and all on 11/05/14 with the last one at 12:19. It is now past 9 days and I have now POS reward.

When I hover of the staking symbol it says:

Staking enabled for 43 inputs weighing 382 coin days.

Do i have to wait until 387 coin days (43*9=387) for a POS reward?
jjj0923
Sr. Member
****
Offline Offline

Activity: 266
Merit: 250


View Profile WWW
May 20, 2014, 10:26:13 PM
 #36

no nodes?

I'm running the new wallet on windoze 8

Lifeforce Pools : http://www.lifeforce.info
Earthcoin :http://eac.lifeforce.info -  Netcoin:  http://net.lifeforce.info - Hundred Coin Pool : http://100.lifeforce.info
Redoakcoin Pool : http://roc.lifeforce.info Guldencoin http://nlg.lifeforce.info also Worldcoin, Guncoin, NOBL, USDe, Tagcoin, Topcoin , Tagcoin , Credits, Goldcoin & Hobonickels
bbr
Sr. Member
****
Offline Offline

Activity: 290
Merit: 250


View Profile
May 20, 2014, 10:29:56 PM
 #37

no nodes?

I'm running the new wallet on windoze 8

I didn't need nodes but here you go:

addnode=209.173.81.165
addnode=94.67.111.203
addnode=95.85.50.11
addnode=86.174.49.224
addnode=212.116.78.90
addnode=198.50.239.178
addnode=94.23.1.224
addnode=90.6.103.84
addnode=31.220.27.140
addnode=92.243.26.148
addnode=31.200.201.218
addnode=107.206.228.217
jjj0923
Sr. Member
****
Offline Offline

Activity: 266
Merit: 250


View Profile WWW
May 20, 2014, 10:35:49 PM
 #38

no nodes?

I'm running the new wallet on windoze 8

I didn't need nodes but here you go:

addnode=209.173.81.165
addnode=94.67.111.203
addnode=95.85.50.11
addnode=86.174.49.224
addnode=212.116.78.90
addnode=198.50.239.178
addnode=94.23.1.224
addnode=90.6.103.84
addnode=31.220.27.140
addnode=92.243.26.148
addnode=31.200.201.218
addnode=107.206.228.217

where should it go and what should it be named.

Lifeforce Pools : http://www.lifeforce.info
Earthcoin :http://eac.lifeforce.info -  Netcoin:  http://net.lifeforce.info - Hundred Coin Pool : http://100.lifeforce.info
Redoakcoin Pool : http://roc.lifeforce.info Guldencoin http://nlg.lifeforce.info also Worldcoin, Guncoin, NOBL, USDe, Tagcoin, Topcoin , Tagcoin , Credits, Goldcoin & Hobonickels
jjj0923
Sr. Member
****
Offline Offline

Activity: 266
Merit: 250


View Profile WWW
May 20, 2014, 10:43:19 PM
 #39

I named to copies - coin.conf and orbitcoin.conf and put copies in the folder along with -qt.exe and also in the data folder...

alas - to no avail.

no synching

Lifeforce Pools : http://www.lifeforce.info
Earthcoin :http://eac.lifeforce.info -  Netcoin:  http://net.lifeforce.info - Hundred Coin Pool : http://100.lifeforce.info
Redoakcoin Pool : http://roc.lifeforce.info Guldencoin http://nlg.lifeforce.info also Worldcoin, Guncoin, NOBL, USDe, Tagcoin, Topcoin , Tagcoin , Credits, Goldcoin & Hobonickels
ghostlander (OP)
Legendary
*
Offline Offline

Activity: 1239
Merit: 1020


No surrender, no retreat, no regret.


View Profile WWW
May 20, 2014, 11:16:34 PM
 #40

does anyone have a .conf file?

my wallet won't synch - no connections.

You get addresses from DNS seeds + IRC. That's enough to get started.

"If you've got a problem and have to spread some coins to make it go away, you've got no problem. You've got an expence." ~ Phoenixcoin (PXC) and Orbitcoin (ORB) and Halcyon (HAL)
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 ... 119 »
  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!