Bitcoin Forum
August 16, 2024, 07:32:20 PM *
News: Latest Bitcoin Core release: 27.1 [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 53 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 ... 2557 »
  Print  
Author Topic: NXT :: descendant of Bitcoin - Updated Information  (Read 2761562 times)
klee
Legendary
*
Offline Offline

Activity: 1498
Merit: 1000



View Profile
November 28, 2013, 03:50:31 PM
 #581

thx!
xychix
Newbie
*
Offline Offline

Activity: 17
Merit: 1


View Profile
November 28, 2013, 03:54:02 PM
 #582

https://bitcointalk.org/index.php?topic=350209.0

Please can anyone send me a starting coin for NXT mining? [1184759969824894663]

i did an attempt to get newbies to explore NXT
nexern
Hero Member
*****
Offline Offline

Activity: 597
Merit: 500



View Profile
November 28, 2013, 03:56:12 PM
Last edit: November 28, 2013, 04:25:32 PM by nexern
 #583

@nexern

How do u handle orphaned blocks?

This block is orphaned - http://88.198.210.245:7876/?request=getBlock&block=12847616539520614975
This one replaced the former - http://88.198.210.245:7876/?request=getBlock&block=7929042837728527803

U can see this on my server only, other server will likely has other set of orphaned blocks if any.

atm i am traversing the whole blockchain from genesis for each fetch instead getting the last high
to ensure consistency and prevent lost blocks within the db. blocks without 'nextBlock' are out this
way. additional i am running a cron to verify the chain every 10 min and rebuilt the db in-memory on
the fly, false blocks/transactions are deleted. not the best approach but ok until the peer is more stable.
 
ps: the checkpoints mentioned before acting as an additional cleaner, stucking at an orphaned block
invokes a jump back to the last good block in the checkpoint array. if this one fails too the fetcher
jumps back as long a good one is found or the genesis block is reached. in this case the blockchain-db
is built completely from ground again.

idev
Hero Member
*****
Offline Offline

Activity: 860
Merit: 1004


BTC OG and designer of the BitcoinMarket.com logo


View Profile
November 28, 2013, 03:56:44 PM
 #584

Trying to get this to work on OSX  Huh
Code:
Exception in thread "main" java.lang.UnsupportedClassVersionError: Nxt : Unsupported major.minor version 51.0
at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassLoader.defineClassCond(ClassLoader.java:637)
at java.lang.ClassLoader.defineClass(ClassLoader.java:621)
at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:141)
at java.net.URLClassLoader.defineClass(URLClassLoader.java:283)
at java.net.URLClassLoader.access$000(URLClassLoader.java:58)
at java.net.URLClassLoader$1.run(URLClassLoader.java:197)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
at java.lang.ClassLoader.loadClass(ClassLoader.java:247)
ParmaBTC
Legendary
*
Offline Offline

Activity: 1218
Merit: 1002



View Profile WWW
November 28, 2013, 03:59:18 PM
 #585

is it possible to recover or cancel transactions to a lost account?
i know " here is no way to recover an account if u don't know the correct phrase"
but what about transactions? they are lost too?
thanks
Come-from-Beyond
Legendary
*
Offline Offline

Activity: 2142
Merit: 1010

Newbie


View Profile
November 28, 2013, 04:03:05 PM
 #586

is it possible to recover or cancel transactions to a lost account?
i know " here is no way to recover an account if u don't know the correct phrase"
but what about transactions? they are lost too?
thanks


The transaction can expire before it's confirmed. Wait for a day.
ImmortAlex
Hero Member
*****
Offline Offline

Activity: 784
Merit: 501


View Profile
November 28, 2013, 04:03:21 PM
 #587

Unsupported major.minor version 51.0
You have java version lower than 1.7, need to update.
Come-from-Beyond
Legendary
*
Offline Offline

Activity: 2142
Merit: 1010

Newbie


View Profile
November 28, 2013, 04:08:08 PM
 #588

Does anyone contribute to http://nxtcoin.wikia.com/wiki/The_Nxt_Wiki ?
nexern
Hero Member
*****
Offline Offline

Activity: 597
Merit: 500



View Profile
November 28, 2013, 04:13:05 PM
 #589

Version 0.2.15 - https://dl.dropboxusercontent.com/u/67242472/Nxt.zip

Two API requests were added, so if u don't use API u don't need this update.

very good, which ones where added?

I'm waiting for the description and then I'll post in Nxt API thread.

great, very usefull!

just one thing, i have noticed that high frequent api access can freeze the node.
i am using libcurl to interface the api, setting e.g. the noKeepAlive tag works better
but this could be coincidence. does the client tcp-stack cleaning up the connection
pool correctly?  have seen many exceptions from worker threads.
as said, not sure about this but perhaps you could have a look at this.




arafel71
Newbie
*
Offline Offline

Activity: 51
Merit: 0


View Profile
November 28, 2013, 04:19:33 PM
 #590

Does anyone contribute to http://nxtcoin.wikia.com/wiki/The_Nxt_Wiki ?

not for now, i waiting system more stabilized and white paper about this currency for do add-on

If someone want contribute with more ''trust'' information about mining or algorithm than myself i can deduce about system.
that's ok.
Come-from-Beyond
Legendary
*
Offline Offline

Activity: 2142
Merit: 1010

Newbie


View Profile
November 28, 2013, 04:21:03 PM
 #591

just one thing, i have noticed that high frequent api access can freeze the node.
i am using libcurl to interface the api, setting e.g. the noKeepAlive tag works better
but this could be coincidence. does the client tcp-stack cleaning up the connection
pool correctly?  have seen many exceptions from worker threads.
as said, not sure about this but perhaps you could have a look at this.

I see "Connection: close", I suppose it does clean up connections.
timmyd
Hero Member
*****
Offline Offline

Activity: 714
Merit: 500


View Profile
November 28, 2013, 04:21:25 PM
 #592

ok guys im having the same tx issue, im using v.14 and sent 1 coin ok to a friend, now i try to send more it just gives me same fault agian "money sent" but it hasnt come off my balance or gone inot unconfirmed Undecided

Monthly profits from Www.Banxcapital.com
The safest Exchange around Www.Banx.io Fiat 2 BTC Www.Banxtrade.com
Latest Crypto News Www.Digitalmoneytimes.com

<a href="http://8857bcobvnw90aez2kvoq2wn8w.hop.clickbank.net/?tid=BB" target="_top"><img src="http://www.bonusbagging.co.uk/Banners/728x90_2.jpg" width="728" height="90" alt="Make thousands RISK FREE" border="0"/></a>
Come-from-Beyond
Legendary
*
Offline Offline

Activity: 2142
Merit: 1010

Newbie


View Profile
November 28, 2013, 04:26:42 PM
 #593

ok guys im having the same tx issue, im using v.14 and sent 1 coin ok to a friend, now i try to send more it just gives me same fault agian "money sent" but it hasnt come off my balance or gone inot unconfirmed Undecided

Don't send them twice to someone until a transaction expire. U can send as many times as u wish to ur own account though.
timmyd
Hero Member
*****
Offline Offline

Activity: 714
Merit: 500


View Profile
November 28, 2013, 04:33:58 PM
 #594

ok guys im having the same tx issue, im using v.14 and sent 1 coin ok to a friend, now i try to send more it just gives me same fault agian "money sent" but it hasnt come off my balance or gone inot unconfirmed Undecided

Don't send them twice to someone until a transaction expire. U can send as many times as u wish to ur own account though.
i can send coins to myself but not my friends address, very strange

Monthly profits from Www.Banxcapital.com
The safest Exchange around Www.Banx.io Fiat 2 BTC Www.Banxtrade.com
Latest Crypto News Www.Digitalmoneytimes.com

<a href="http://8857bcobvnw90aez2kvoq2wn8w.hop.clickbank.net/?tid=BB" target="_top"><img src="http://www.bonusbagging.co.uk/Banners/728x90_2.jpg" width="728" height="90" alt="Make thousands RISK FREE" border="0"/></a>
Come-from-Beyond
Legendary
*
Offline Offline

Activity: 2142
Merit: 1010

Newbie


View Profile
November 28, 2013, 04:35:16 PM
 #595

ok guys im having the same tx issue, im using v.14 and sent 1 coin ok to a friend, now i try to send more it just gives me same fault agian "money sent" but it hasnt come off my balance or gone inot unconfirmed Undecided

Don't send them twice to someone until a transaction expire. U can send as many times as u wish to ur own account though.
i can send coins to myself but not my friends address, very strange


Do u send it from ur own server?
Come-from-Beyond
Legendary
*
Offline Offline

Activity: 2142
Merit: 1010

Newbie


View Profile
November 28, 2013, 04:35:35 PM
 #596

There are 300+ accounts in Nxt - http://88.198.210.245:7876/?request=getState
timmyd
Hero Member
*****
Offline Offline

Activity: 714
Merit: 500


View Profile
November 28, 2013, 04:36:34 PM
 #597

ok guys im having the same tx issue, im using v.14 and sent 1 coin ok to a friend, now i try to send more it just gives me same fault agian "money sent" but it hasnt come off my balance or gone inot unconfirmed Undecided

Don't send them twice to someone until a transaction expire. U can send as many times as u wish to ur own account though.
i can send coins to myself but not my friends address, very strange


Do u send it from ur own server?
i dont know what you mean, im using the nxt client locally on http://localhost:7875/

Monthly profits from Www.Banxcapital.com
The safest Exchange around Www.Banx.io Fiat 2 BTC Www.Banxtrade.com
Latest Crypto News Www.Digitalmoneytimes.com

<a href="http://8857bcobvnw90aez2kvoq2wn8w.hop.clickbank.net/?tid=BB" target="_top"><img src="http://www.bonusbagging.co.uk/Banners/728x90_2.jpg" width="728" height="90" alt="Make thousands RISK FREE" border="0"/></a>
ParmaBTC
Legendary
*
Offline Offline

Activity: 1218
Merit: 1002



View Profile WWW
November 28, 2013, 04:38:33 PM
 #598

is it possible to recover or cancel transactions to a lost account?
i know " here is no way to recover an account if u don't know the correct phrase"
but what about transactions? they are lost too?
thanks


The transaction can expire before it's confirmed. Wait for a day.

Yes i know, but there is 10+ confirmations
Come-from-Beyond
Legendary
*
Offline Offline

Activity: 2142
Merit: 1010

Newbie


View Profile
November 28, 2013, 04:39:30 PM
 #599

i dont know what you mean, im using the nxt client locally on http://localhost:7875/

Try to use my server http://88.198.210.245:7875 to send the coins to ur friend and tell me if u managed to do that.
Come-from-Beyond
Legendary
*
Offline Offline

Activity: 2142
Merit: 1010

Newbie


View Profile
November 28, 2013, 04:39:50 PM
 #600

Yes i know, but there is 10+ confirmations

It's too late then
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 53 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 ... 2557 »
  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!