Bitcoin Forum
April 19, 2024, 04:44:27 AM *
News: Latest Bitcoin Core release: 26.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 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 ... 2122 »
  Print  
Author Topic: [XMR] Monero - A secure, private, untraceable cryptocurrency  (Read 4666938 times)
tacotime
Legendary
*
Offline Offline

Activity: 1484
Merit: 1005



View Profile
April 30, 2014, 03:47:39 PM
 #401

Bug is fixed. Please update from git.

I'm going to ask Takotime to build binaries for Windows.

Your fix is wrong.  There is no need to disable all error checking.  Simply commenting out the line works fine, I just tested it.

https://github.com/monero-project/bitmonero/commit/cf8fe2867654f0061a17ca4780e736a170a8f87b

In this case the rest of transation can't be parsed by wallet. This means that wallet has to stop parsing this tx. The proper fix will be issued later after talking to Amphibian who created this tx.

There are no issues so far with implementing the fix as in my commit, but yes, this is improper error handling

It further parses after without error

Code:
XMR: 44GBHzv6ZyQdJkjqZje6KLZ3xSyN1hBSFAnLP6EAqJtCRVzMzZmeXTC2AHKDS9aEDTRKmo6a6o9r9j86pYfhCWDkKjbtcns
1713501867
Hero Member
*
Offline Offline

Posts: 1713501867

View Profile Personal Message (Offline)

Ignore
1713501867
Reply with quote  #2

1713501867
Report to moderator
1713501867
Hero Member
*
Offline Offline

Posts: 1713501867

View Profile Personal Message (Offline)

Ignore
1713501867
Reply with quote  #2

1713501867
Report to moderator
1713501867
Hero Member
*
Offline Offline

Posts: 1713501867

View Profile Personal Message (Offline)

Ignore
1713501867
Reply with quote  #2

1713501867
Report to moderator
In order to achieve higher forum ranks, you need both activity points and merit points.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1713501867
Hero Member
*
Offline Offline

Posts: 1713501867

View Profile Personal Message (Offline)

Ignore
1713501867
Reply with quote  #2

1713501867
Report to moderator
thankful_for_today
Full Member
***
Offline Offline

Activity: 126
Merit: 101


View Profile
April 30, 2014, 03:57:33 PM
 #402

Bug is fixed. Please update from git.

I'm going to ask Takotime to build binaries for Windows.

Your fix is wrong.  There is no need to disable all error checking.  Simply commenting out the line works fine, I just tested it.

https://github.com/monero-project/bitmonero/commit/cf8fe2867654f0061a17ca4780e736a170a8f87b

In this case the rest of transation can't be parsed by wallet. This means that wallet has to stop parsing this tx. The proper fix will be issued later after talking to Amphibian who created this tx.

There are no issues so far with implementing the fix as in my commit, but yes, this is improper error handling

It further parses after without error

It doesn't fail in this case but there is no reason to parse it futher because there is no way to understand it. Your version of wallet that continues to parse unknown data is vulnerable to some possible attacks.

Vote for BitMonero on Comkort exchange: https://comkort.com/vote
BTC: 1F1Ryrc2gvJQsVNTS5xvCxKugMjvbFRzX4
tacotime
Legendary
*
Offline Offline

Activity: 1484
Merit: 1005



View Profile
April 30, 2014, 03:58:38 PM
 #403

It doesn't fail in this case but there is no reason to parse it futher because there is no way to understand it. Your version of wallet that continues to parse unknown data is vulnerable to some possible attacks.

Okay, I will make it return on my master then.

Code:
XMR: 44GBHzv6ZyQdJkjqZje6KLZ3xSyN1hBSFAnLP6EAqJtCRVzMzZmeXTC2AHKDS9aEDTRKmo6a6o9r9j86pYfhCWDkKjbtcns
nakaone
Hero Member
*****
Offline Offline

Activity: 742
Merit: 500


View Profile
April 30, 2014, 04:02:44 PM
 #404

how many coins are in existence right now?
the_darkness
Member
**
Offline Offline

Activity: 79
Merit: 10


View Profile
April 30, 2014, 04:19:54 PM
 #405

So are we able to continue mining while a fix is finalized? I'm in no rush to go through the process of updating to a beta wallet if a final one is going to be released soon anyway. I still seem to be synced to the network in the daemon, it's just that obviously the wallet cannot currently receive any new transactions.
eizh
Hero Member
*****
Offline Offline

Activity: 560
Merit: 500



View Profile
April 30, 2014, 04:26:34 PM
 #406

1st day:
(2^64 - 1 - 1) * (2^-20) * (10^-12)
=(18,446,744,073,709,551,616 -1 -1)*2^(-20)*10^(-12)
=18,446,744,073,709,551,614 * 0.00000095367431640625 * 0.000000000001
=17.592186044415999998092651367188

1 year(365 days):
(2^64 - 1 - 365) * (2^-20) * (10^-12)
=18,446,744,073,709,551,250 * 0.00000095367431640625 * 0.000000000001
=17.592186044415999650955200195313

Am I do the math reght?

This block reward formula is recursive so you need to write some code to compute it at a certain date. The "A" parameter is not the number of days but the number of coins in circulation so far in atomic units (rather than decimal shifted value).

1st day:
(2^64 - 1 - 0) * (2^-20) * (10^-12)
= 17.5922

365th day:
(2^64 - 1 - 7.2722*10^18) * (2^-20) * (10^-12)
= 10.6569

how many coins are in existence right now?

Around 300k.
tacotime
Legendary
*
Offline Offline

Activity: 1484
Merit: 1005



View Profile
April 30, 2014, 04:30:46 PM
 #407

So are we able to continue mining while a fix is finalized? I'm in no rush to go through the process of updating to a beta wallet if a final one is going to be released soon anyway. I still seem to be synced to the network in the daemon, it's just that obviously the wallet cannot currently receive any new transactions.

Mining is still fine even with the old wallet using the daemon

Here are some new x64 linux binaries though: https://mega.co.nz/#!N5dxzZAC!_FOWi9gML1eeSNliyZ4Ihcp6C6tIFdj2xUslnLcNsMQ

win64 binaries are building

Code:
XMR: 44GBHzv6ZyQdJkjqZje6KLZ3xSyN1hBSFAnLP6EAqJtCRVzMzZmeXTC2AHKDS9aEDTRKmo6a6o9r9j86pYfhCWDkKjbtcns
thankful_for_today
Full Member
***
Offline Offline

Activity: 126
Merit: 101


View Profile
April 30, 2014, 04:31:53 PM
 #408

So are we able to continue mining while a fix is finalized? I'm in no rush to go through the process of updating to a beta wallet if a final one is going to be released soon anyway. I still seem to be synced to the network in the daemon, it's just that obviously the wallet cannot currently receive any new transactions.

Everybody can continue mining and sending money with an updated simplewallet software.

All daemons are ok without any updates because daemons don't care about "extra" field.

Buggy merged mining network is stopped an hour ago.

Vote for BitMonero on Comkort exchange: https://comkort.com/vote
BTC: 1F1Ryrc2gvJQsVNTS5xvCxKugMjvbFRzX4
thankful_for_today
Full Member
***
Offline Offline

Activity: 126
Merit: 101


View Profile
April 30, 2014, 04:33:13 PM
 #409

So are we able to continue mining while a fix is finalized? I'm in no rush to go through the process of updating to a beta wallet if a final one is going to be released soon anyway. I still seem to be synced to the network in the daemon, it's just that obviously the wallet cannot currently receive any new transactions.

Mining is still fine even with the old wallet using the daemon

Here are some new x64 linux binaries though: https://mega.co.nz/#!N5dxzZAC!_FOWi9gML1eeSNliyZ4Ihcp6C6tIFdj2xUslnLcNsMQ

win64 binaries are building

Thank you!

Vote for BitMonero on Comkort exchange: https://comkort.com/vote
BTC: 1F1Ryrc2gvJQsVNTS5xvCxKugMjvbFRzX4
tacotime
Legendary
*
Offline Offline

Activity: 1484
Merit: 1005



View Profile
April 30, 2014, 04:33:50 PM
 #410

So are we able to continue mining while a fix is finalized? I'm in no rush to go through the process of updating to a beta wallet if a final one is going to be released soon anyway. I still seem to be synced to the network in the daemon, it's just that obviously the wallet cannot currently receive any new transactions.

Everybody can continue mining and sending money with an updated simplewallet software.

All daemons are ok without any updates because daemons don't care about "extra" field.

Buggy merged mining network is stopped an hour ago.

Please ask your friend not to test incompatible changes on the mainnet, that is what testnet is for

Code:
XMR: 44GBHzv6ZyQdJkjqZje6KLZ3xSyN1hBSFAnLP6EAqJtCRVzMzZmeXTC2AHKDS9aEDTRKmo6a6o9r9j86pYfhCWDkKjbtcns
emontmon
Member
**
Offline Offline

Activity: 196
Merit: 10


View Profile
April 30, 2014, 04:50:00 PM
 #411

looks like the problem is still occuring despite merged mining having stopped 1 hour ago.
eizh
Hero Member
*****
Offline Offline

Activity: 560
Merit: 500



View Profile
April 30, 2014, 04:59:15 PM
 #412

looks like the problem is still occuring despite merged mining having stopped 1 hour ago.

You need to replace the wallet binary if you want to send, receive, or check an updated balance. Mining continued to work all this time.
equipoise
Hero Member
*****
Offline Offline

Activity: 794
Merit: 1000


Monero (XMR) - secure, private, untraceable


View Profile WWW
April 30, 2014, 05:16:24 PM
 #413

looks like the problem is still occuring despite merged mining having stopped 1 hour ago.

You could try my build till the official one is released: https://www.dropbox.com/s/zb5ch99jlbgp5pv/simplewallet.exe
I built simplewallet.exe for Windows from the new source code. It's working. Here is a link: https://www.dropbox.com/s/zb5ch99jlbgp5pv/simplewallet.exe

Tip me some MRO: 4AyRmUcxzefB5quumzK3HNE4zmCiGc8vhG6fE1oJpGVyVZF7fvDgSpt3MzgLfQ6Q1719xQhmfkM9Z2u NXgDMqYhjJVmc6KX

About me | zRMicroArray - phase 2 - Gene Expression Analysis software | [Weed Like to Talk - Bulgaria] Start a wave of cannabis seminars in Europe | Monero weighted average price stats: moneroprice.i2p
BTC: 1KoCX7TWKVGwqmmFw3CKyUSrKRSStueZar | NMC: NKhYEYpe1Le9MwHrwKsdSm5617J4toVar9 | XMR (Tip me a beer OpenAlias Monero address): tip.changetheworldwork.com
[XMR] Monero - A secure, private, untraceable cryptocurrency: 4AyRmUcxzefB5quumzK3HNE4zmCiGc8vhG6fE1oJpGVyVZF7fvDgSpt3MzgLfQ6Q1719xQhmfkM9Z2u NXgDMqYhjJVmc6KX
emontmon
Member
**
Offline Offline

Activity: 196
Merit: 10


View Profile
April 30, 2014, 05:19:55 PM
 #414

Thank you
PonyBoy
Full Member
***
Offline Offline

Activity: 313
Merit: 100



View Profile
April 30, 2014, 05:22:35 PM
 #415

If I reclone and recompile in linux it should fix this bug correct?
fartbags
Legendary
*
Offline Offline

Activity: 1190
Merit: 1004


View Profile
April 30, 2014, 05:28:45 PM
 #416

half a month, without a miner, a pool and GUI.
How can i play with this coin?
I really want to get in, but it's so difficult to me!

half a month? it's been 5 days only

The block chain says it started about 19 days ago.

eizh
Hero Member
*****
Offline Offline

Activity: 560
Merit: 500



View Profile
April 30, 2014, 05:34:42 PM
 #417

half a month, without a miner, a pool and GUI.
How can i play with this coin?
I really want to get in, but it's so difficult to me!

half a month? it's been 5 days only

The block chain says it started about 19 days ago.

When synching, there's a bug that doubles the estimated time to the last synced block. This blockchain started on April 18 at 10:50 GMT, which you can check through timestamps. That puts the age at 13 days.
PonyBoy
Full Member
***
Offline Offline

Activity: 313
Merit: 100



View Profile
April 30, 2014, 05:37:04 PM
 #418

If I reclone and recompile in linux it should fix this bug correct?

Lame, still getting this stupid extra parse error...
tacotime
Legendary
*
Offline Offline

Activity: 1484
Merit: 1005



View Profile
April 30, 2014, 05:37:48 PM
 #419

If I reclone and recompile in linux it should fix this bug correct?

It should work, yes

Code:
XMR: 44GBHzv6ZyQdJkjqZje6KLZ3xSyN1hBSFAnLP6EAqJtCRVzMzZmeXTC2AHKDS9aEDTRKmo6a6o9r9j86pYfhCWDkKjbtcns
Patron92
Full Member
***
Offline Offline

Activity: 234
Merit: 100



View Profile
April 30, 2014, 06:08:44 PM
 #420

Did I get it right - mining is going on despite there is an error?
What to do to get rid of the error? Who's succeed in solving the problem? I am a lit bit panic, sorry
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 ... 2122 »
  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!