Author

Topic: [XMR] Monero - A secure, private, untraceable cryptocurrency - page 1467. (Read 4670622 times)

newbie
Activity: 14
Merit: 0
2014-Sep-07 15:34:36.680570 [P2P7][106.120.124.166:11463 INC]Sync data returned
unknown top block: 2161 -> 207166 [205009 blocks (142 days) behind]
SYNCHRONIZATION started
2014-Sep-07 15:34:37.512617 [P2P1][24.87.58.96:65099 INC]Sync data returned unkn
own top block: 2164 -> 207166 [205002 blocks (142 days) behind]
SYNCHRONIZATION started
2014-Sep-07 15:34:41.725858 [P2P9][58.48.130.113:25321 INC]Sync data returned un
known top block: 2201 -> 207166 [204965 blocks (142 days) behind]
SYNCHRONIZATION started
2014-Sep-07 15:34:43.334950 [P2P1][81.84.156.111:53623 INC]Sync data returned un
known top block: 2201 -> 202659 [200458 blocks (139 days) behind]
SYNCHRONIZATION started
2014-Sep-07 15:34:43.896983 [P2P2][116.228.239.26:52515 INC]Sync data returned u
nknown top block: 2201 -> 202659 [200458 blocks (139 days) behind]
SYNCHRONIZATION started
2014-Sep-07 15:34:44.139996 [P2P2][95.88.130.140:50056 INC]Sync data returned un
known top block: 2201 -> 207166 [204965 blocks (142 days) behind]
SYNCHRONIZATION started
2014-Sep-07 15:34:44.395011 [P2P4][60.190.156.254:26092 INC]Sync data returned u
nknown top block: 2201 -> 207166 [204965 blocks (142 days) behind]
SYNCHRONIZATION started

anything goes wrong with SYNCHRONIZATION?

You are connecting to pairs is the right chain as well as to pairs on the wrong chain. I would suggest you to ban the connections to the wrong ones, so you will reduce the possibilities of ending up on the wrong chain.

I mean, do this for every node you detect on the "dark side":

$ sudo iptables -A INPUT -s -j DROP

I did this and I ended up being correctly synchronized on the right chain.

My OS is win7 64bit ,not linux.
legendary
Activity: 1596
Merit: 1011
How use this blockchain.bin ? Daemon tools tells Error in command line.
donator
Activity: 1274
Merit: 1060
GetMonero.org / MyMonero.com
monero.win.x64.latest.zip
Where are simpleminer.exe & connectivity_tool.exe? So I have use my old ones or this files are not unnecessary anymore?   Huh

They have never been necessary for regular functioning - if you have a specific use-case for either you'll have to compile them from source:)
donator
Activity: 1722
Merit: 1036
An important attribute for money is limited and knowable supply. I also support cooperation between coins but at the same time there needs to be some limit to what are legitimate coins and what are not. Otherwise you could just expand money supply at will.

In my books, BTC is legitimate due to being the first.

XMR is the legitimate one among cryptonote coins (and by extension - of all anon tech).

There are no other market niches that would support a coin.


2.0 tech such as NXT, XCP maybe good but they should be clearly branded to be something else than coins.
sr. member
Activity: 462
Merit: 250
(after reading the last 3 or so pages)

More facts. Less drama.


Also: it should be pretty obvious by now to everyone supporting either XMR or BBR that there is more to be gained from cooperation between (devs & communities of) those two coins than from hostility between them.


EDIT: iCEBREAKER provided a pretty solid summary on the previous page, imo.

I support both. XMR has more market capitalization. But BBR has better blockchain.
legendary
Activity: 1470
Merit: 1007
(after reading the last 3 or so pages)

More facts. Less drama.


Also: it should be pretty obvious by now to everyone supporting either XMR or BBR that there is more to be gained from cooperation between (devs & communities of) those two coins than from hostility between them.


EDIT: iCEBREAKER provided a pretty solid summary on the previous page, imo.
sr. member
Activity: 263
Merit: 250
This is completely off-topic:

Monero emission rate closed form

TL;DR: Let a = 2-20 * 10-12, then block reward is Rn = M a (1 - a)n

While absentmindedly reading the OP for the first time in months and admiring what it has become in the meantime, I couldn't help notice that the emission rate is still advertised in that clunky recurrence relation with additional statistics and a graph to illustrate what's going on. While the statistics and graph are certainly well-received, they should not be necessary to convey what everybody feels or "knows" or knows: that Monero has a simple exponentially decreasing emission rate. So I've decided in a burst of melancholia to solve it with pen and paper, as opposed to, say, Mathematica's RSolve or similar.

Proof

Let M = 264 - 1 be the total number of atomic units
Let a = 2-20 * 10-12 be the constant that appears in the original definition
Assuming genesis block is number 0
Let Rn be the block reward of block number n

The original recursive definition is that

Rn+1 = (M - R0 - R1 - R2 - ... - Rn) a
Rn+1 = M a - R0 a - R1 a - R2 a - ... - Rn a

So let's expand a few terms

R0 = M a
R1 = M a - M a2
R2 = M a - 2 M a2 + M a3
R3 = M a - 3 M a2 + 3 M a3 - M a4
...

That looks familiar, doesn't it? Let's try to generalize

Rn = M a - n M a2 + n(n-1)/2 M a3 - ... + (-1)n M an+1)
Rn = M a (1 - n a + n(n-1)/2 a2 - ... + (-1)n an)
Rn = M a (1 - a)n (*)

Huh. Now let's prove it with strong induction (see base cases above)

Assuming R0, R1, ..., Rn satisfy (*) above

Rn+1 = M a - R0 a - R1 a - R2 a - ... - Rn a
Rn+1 = M a - M a2 - M a2 (1 - a) - M a2 (1 - a)2- ... - M a2 (1 - a)n
Rn+1 = M a - M a2 (1 + (1 - a) + (1 - a)2 + ... + (1 - a)n)
Rn+1 = M a - M a2 (1 - (1 - a)n+1) / (1 - (1 - a))
Rn+1 = M a - M a (1 - (1 - a)n+1)
Rn+1 = M a ( 1 - (1 - (1 - a)n+1))
Rn+1 = M a (1 - a)n+1

QED

Ahhh, feels like 6th grade again...
newbie
Activity: 14
Merit: 0
monero.win.x64.latest.zip
Where are simpleminer.exe & connectivity_tool.exe? So I have use my old ones or this files are not unnecessary anymore?   Huh
member
Activity: 65
Merit: 10
Can we still expect per KB fees until September ~15th?

Good job if everything else is now working properly again.
legendary
Activity: 1624
Merit: 1008
The Drooling Masses® has successfully updated the blockchain and the windows binaries. 

Now the version # needs to be added to the tread title. Smiley
sr. member
Activity: 462
Merit: 250

how is the profit now?Could I earn my power fee mining by GPU?

No. If you pay over $0.1/kWH, you will not cover your electricity cost.

newbie
Activity: 14
Merit: 0
Quote
This is the current Windows blockchain on the correct fork. 
fluffypony, thank you good man!  Grin
newbie
Activity: 14
Merit: 0
anything goes wrong with SYNCHRONIZATION?

Nothing goes wrong, you're synchronising from scratch. If you want to avoid this you can use a blockchain bootstrap as indicated in the OP.
thanks.
how is the profit now?Could I earn my power fee mining by GPU?
donator
Activity: 1274
Merit: 1060
GetMonero.org / MyMonero.com
anything goes wrong with SYNCHRONIZATION?

Nothing goes wrong, you're synchronising from scratch. If you want to avoid this you can use a blockchain bootstrap as indicated in the OP.
newbie
Activity: 14
Merit: 0
2014-Sep-07 15:34:36.680570 [P2P7][106.120.124.166:11463 INC]Sync data returned
unknown top block: 2161 -> 207166 [205009 blocks (142 days) behind]
SYNCHRONIZATION started
2014-Sep-07 15:34:37.512617 [P2P1][24.87.58.96:65099 INC]Sync data returned unkn
own top block: 2164 -> 207166 [205002 blocks (142 days) behind]
SYNCHRONIZATION started
2014-Sep-07 15:34:41.725858 [P2P9][58.48.130.113:25321 INC]Sync data returned un
known top block: 2201 -> 207166 [204965 blocks (142 days) behind]
SYNCHRONIZATION started
2014-Sep-07 15:34:43.334950 [P2P1][81.84.156.111:53623 INC]Sync data returned un
known top block: 2201 -> 202659 [200458 blocks (139 days) behind]
SYNCHRONIZATION started
2014-Sep-07 15:34:43.896983 [P2P2][116.228.239.26:52515 INC]Sync data returned u
nknown top block: 2201 -> 202659 [200458 blocks (139 days) behind]
SYNCHRONIZATION started
2014-Sep-07 15:34:44.139996 [P2P2][95.88.130.140:50056 INC]Sync data returned un
known top block: 2201 -> 207166 [204965 blocks (142 days) behind]
SYNCHRONIZATION started
2014-Sep-07 15:34:44.395011 [P2P4][60.190.156.254:26092 INC]Sync data returned u
nknown top block: 2201 -> 207166 [204965 blocks (142 days) behind]
SYNCHRONIZATION started

anything goes wrong with SYNCHRONIZATION?
donator
Activity: 1274
Merit: 1060
GetMonero.org / MyMonero.com
http://monero.cc/downloads/blockchain/win/blockchain.bin
sha: 8c23da70c1291a61444090d8d5127dd6c12efa81
is this a new variant of blockchain?
Please, somebody answer already...  Huh

This is the current Windows blockchain on the correct fork.
newbie
Activity: 14
Merit: 0
http://monero.cc/downloads/blockchain/win/blockchain.bin
sha: 8c23da70c1291a61444090d8d5127dd6c12efa81
is this a new variant of blockchain?
Please, somebody answer already...  Huh
newbie
Activity: 14
Merit: 0
Does everything go well now?
If so,I'll mine xmr again.

It go well all the way. You lost time by stopped mining.
ok,thanks.I'll keep mining and hope I could earn my power fee. Grin
legendary
Activity: 1904
Merit: 1003
Does everything go well now?
If so,I'll mine xmr again.

It go well all the way. You lost time by stopped mining.
hero member
Activity: 529
Merit: 505
I'm on drugs, what's your excuse?
Jump to: