GingerAle
Legendary
Offline
Activity: 1260
Merit: 1008
|
|
March 16, 2015, 09:16:50 PM |
|
We suppose to support Monroe for rise up this is trustful and secure currency
It is trustful and secure, as far as I can tell. But its your coin, do what you'd like.
|
|
|
|
binaryFate
Legendary
Offline
Activity: 1512
Merit: 1012
Still wild and free
|
|
March 16, 2015, 09:19:53 PM |
|
Does mixin count increase the time required for confirmations? Does a transaction with a higher mixin count have to "sit and wait" for additional transactions to occur on the blockchain, in order to mix with them? What if in a given minute or period of minutes, there are no additional transactions, only the "mined block reward(s)?" Can a high mixin count transaction mix with block rewards?
Let us discuss...
As far as I understand cryptonote (and also bitcoin), the mixin count does not increase the time required for confirmations - the ring signature stuff is passive - its just pulling information out of the blockchain at the instant the transaction is created. It doesn't have to go anywhere to get ring signed. Just adding that this is the core practical difference of usability between coinjoin (that includes darkcoin) and cryptonote. With monero you don't need anybody else to mix with you at any particular time to make an anonymous transaction. You can be the only one in the world using Monero for the entire day, it won't be a problem at all. It's beautiful
|
Monero's privacy and therefore fungibility are MUCH stronger than Bitcoin's. This makes Monero a better candidate to deserve the term "digital cash".
|
|
|
smooth
Legendary
Offline
Activity: 2968
Merit: 1198
|
|
March 16, 2015, 09:42:13 PM |
|
Does mixin count increase the time required for confirmations? Does a transaction with a higher mixin count have to "sit and wait" for additional transactions to occur on the blockchain, in order to mix with them? What if in a given minute or period of minutes, there are no additional transactions, only the "mined block reward(s)?" Can a high mixin count transaction mix with block rewards?
The way ring signatures work is the mixing is done entirely by you, on your own computer, with no outside interaction at all. There are no third parties, and mining has no role in mixing. So to answer your question higher mixin count does not increase the time required for confirmations. It does make the transaction larger (in bytes) so it will require a higher fee, and if blocks are filling up it may have to wait a bit longer to make it into a block.
|
|
|
|
binaryFate
Legendary
Offline
Activity: 1512
Merit: 1012
Still wild and free
|
|
March 16, 2015, 09:48:06 PM |
|
so it will require a higher fee, and if blocks are filling up it may have to wait a bit longer to make it into a block.
Not sure about that since the larger fees make it more attractive for miners. If the mining/fees market is close to a free market, the transaction should have the same likelihood to be chosen by miners as a small one.
|
Monero's privacy and therefore fungibility are MUCH stronger than Bitcoin's. This makes Monero a better candidate to deserve the term "digital cash".
|
|
|
smooth
Legendary
Offline
Activity: 2968
Merit: 1198
|
|
March 16, 2015, 09:52:58 PM |
|
so it will require a higher fee, and if blocks are filling up it may have to wait a bit longer to make it into a block.
Not sure about that since the larger fees make it more attractive for miners. If the mining/fees market is close to a free market, the transaction should have the same likelihood to be chosen by miners as a small one. Not if the transaction size is somewhat close to the block size limit. Let's say there are two large transactions (each 60% of the block size limit) and two small ones (10% of the block size). The next block will probably include one of the large ones and both of the small ones. Meaning one of the larger transactions will have to wait but the smaller ones won't. When volume increases and block sizes increase to where individual truncations are much smaller than a block, then what you wrote would likely be correct.
|
|
|
|
pa
|
|
March 16, 2015, 09:54:15 PM |
|
What are the ramifications of a customer's Payment ID being leaked (in regards to past orders, assuming it is changed once the leak is discovered)
As mentioned above, I think the payment ID being leaked could only indicate that someone made a payment for that specific amount [emphasis added] at that specific time. I don't think the amount of the transaction is derivable from the blockchain.
|
|
|
|
binaryFate
Legendary
Offline
Activity: 1512
Merit: 1012
Still wild and free
|
|
March 16, 2015, 09:58:27 PM |
|
so it will require a higher fee, and if blocks are filling up it may have to wait a bit longer to make it into a block.
Not sure about that since the larger fees make it more attractive for miners. If the mining/fees market is close to a free market, the transaction should have the same likelihood to be chosen by miners as a small one. Not if the transaction size is somewhat close to the block size limit. Let's say there are two large transactions (each 60% of the block size limit) and two small ones (10% of the block size). The next block will probably include one of the large ones and both of the small ones. Meaning one of the larger transactions will have to wait but the smaller ones won't. When volume increases and block sizes increase to where individual truncations are much smaller than a block, then what you wrote would likely be correct. Yes, you're right. I see bin-packing here, interesting use case. Is it currently possible to reach this edge case with the current size of transactions/blocks?
|
Monero's privacy and therefore fungibility are MUCH stronger than Bitcoin's. This makes Monero a better candidate to deserve the term "digital cash".
|
|
|
smooth
Legendary
Offline
Activity: 2968
Merit: 1198
|
|
March 16, 2015, 09:59:45 PM |
|
What are the ramifications of a customer's Payment ID being leaked (in regards to past orders, assuming it is changed once the leak is discovered)
As mentioned above, I think the payment ID being leaked could only indicate that someone made a payment for that specific amount [emphasis added] at that specific time. I don't think the amount of the transaction is derivable from the blockchain. The exact amount is not, although some range of estimates can be made. There are a bunch of outputs, some are payment and some are change, with no way to tell which is which. In fact there can be multiple payments in one transaction (as with pool payouts) so it isn't even clear that all the non-change ones are going to the same destination. The current wallet code isn't that great about putting these together. For example, for a payment with one recipient, if the are two outputs of the same size, you know one is always going to the recipient and one as change. But that can and likely will be improved in the future. If wallet code occasionally uses outputs of 1+1 instead of 2 or even 0.5+0.5 instead of 1 then you wouldn't be a able to make this inference.
|
|
|
|
5w00p
|
|
March 16, 2015, 10:00:36 PM |
|
I appreciate the thoughtful responses to my discussion questions.
I am working on "wrapping my brain around" the finer nuances of Monero so that I can both be properly informed and better explain it to others.
|
|
|
|
smooth
Legendary
Offline
Activity: 2968
Merit: 1198
|
|
March 16, 2015, 10:00:59 PM |
|
so it will require a higher fee, and if blocks are filling up it may have to wait a bit longer to make it into a block.
Not sure about that since the larger fees make it more attractive for miners. If the mining/fees market is close to a free market, the transaction should have the same likelihood to be chosen by miners as a small one. Not if the transaction size is somewhat close to the block size limit. Let's say there are two large transactions (each 60% of the block size limit) and two small ones (10% of the block size). The next block will probably include one of the large ones and both of the small ones. Meaning one of the larger transactions will have to wait but the smaller ones won't. When volume increases and block sizes increase to where individual truncations are much smaller than a block, then what you wrote would likely be correct. Yes, you're right. I see bin-packing here, interesting use case. Is it currently possible to reach this edge case with the current size of transactions/blocks? Oh yes it happens all the time. Since the level of activity is relatively low, the (soft) block size limit is at the minimum allowed value of 20KB, which is also the default size limit for transactions (larger than that, they get broken up into pieces), so there are quite a few transactions of 10-15KB for example.
|
|
|
|
Hueristic
Legendary
Offline
Activity: 3990
Merit: 5429
Doomed to see the future and unable to prevent it
|
|
March 16, 2015, 10:47:44 PM |
|
Plenty of Newbie trolls though.
They have to start somewhere! How would you setup a miner to adjust with diff like this?
It easy to script something that works off the difficulty reported by the 'getinfo' API for example. Better still might be using the 'getinfo' API from a node and a price API from an exchange. Maybe for you, I have never coded node communication before. Got a link for a quick example?
|
“Bad men need nothing more to compass their ends, than that good men should look on and do nothing.”
|
|
|
fluffypony
Donator
Legendary
Offline
Activity: 1274
Merit: 1060
GetMonero.org / MyMonero.com
|
|
March 16, 2015, 10:59:25 PM |
|
Hi guys - I'm encountering some nigglies with my computer and my wonderfully fast Internet - the Missive is ready, but it's 1am and it's not going up, so I'll have to try again tomorrow morning.
|
|
|
|
Hueristic
Legendary
Offline
Activity: 3990
Merit: 5429
Doomed to see the future and unable to prevent it
|
|
March 16, 2015, 11:05:12 PM |
|
Hi guys - I'm encountering some nigglies with my computer and my wonderfully fast Internet - the Missive is ready, but it's 1am and it's not going up, so I'll have to try again tomorrow morning.
Have a good night and here have some retro to put you to sleep. https://www.youtube.com/watch?v=oc1sgCT7X2cI'm listening to old 1 hit wonders from when i was a kid.
|
“Bad men need nothing more to compass their ends, than that good men should look on and do nothing.”
|
|
|
smooth
Legendary
Offline
Activity: 2968
Merit: 1198
|
|
March 16, 2015, 11:19:59 PM |
|
Plenty of Newbie trolls though.
They have to start somewhere! How would you setup a miner to adjust with diff like this?
It easy to script something that works off the difficulty reported by the 'getinfo' API for example. Better still might be using the 'getinfo' API from a node and a price API from an exchange. Maybe for you, I have never coded node communication before. Got a link for a quick example? If you are on linux just try $ curl localhost:18081/getinfo From there if you have any kind of scripting skills you can parse out the difficulty and go from there. If you don't have any scripting skills you won't be able to do this I'm afraid.
|
|
|
|
smooth
Legendary
Offline
Activity: 2968
Merit: 1198
|
|
March 16, 2015, 11:21:06 PM |
|
Hi guys - I'm encountering some nigglies with my computer and my wonderfully fast Internet - the Missive is ready, but it's 1am and it's not going up, so I'll have to try again tomorrow morning.
Have a good night and here have some retro to put you to sleep. https://www.youtube.com/watch?v=oc1sgCT7X2cI'm listening to old 1 hit wonders from when i was a kid. What BS. No girls.
|
|
|
|
Hueristic
Legendary
Offline
Activity: 3990
Merit: 5429
Doomed to see the future and unable to prevent it
|
|
March 16, 2015, 11:21:47 PM |
|
Plenty of Newbie trolls though.
They have to start somewhere! How would you setup a miner to adjust with diff like this?
It easy to script something that works off the difficulty reported by the 'getinfo' API for example. Better still might be using the 'getinfo' API from a node and a price API from an exchange. Maybe for you, I have never coded node communication before. Got a link for a quick example? If you are on linux just try $ curl localhost:18081/getinfo From there if you have any kind of scripting skills you can parse out the difficulty and go from there. If you don't have any scripting skills you won't be able to do this I'm afraid. Dos/Winblows here all I can do on nix is ls and grep. LOL
|
“Bad men need nothing more to compass their ends, than that good men should look on and do nothing.”
|
|
|
smooth
Legendary
Offline
Activity: 2968
Merit: 1198
|
|
March 16, 2015, 11:24:46 PM |
|
Plenty of Newbie trolls though.
They have to start somewhere! How would you setup a miner to adjust with diff like this?
It easy to script something that works off the difficulty reported by the 'getinfo' API for example. Better still might be using the 'getinfo' API from a node and a price API from an exchange. Maybe for you, I have never coded node communication before. Got a link for a quick example? If you are on linux just try $ curl localhost:18081/getinfo From there if you have any kind of scripting skills you can parse out the difficulty and go from there. If you don't have any scripting skills you won't be able to do this I'm afraid. Dos/Winblows here all I can do on nix is ls and grep. LOL I don't do Windows but I imagine there are some tools that can query a URL and parse the JSON. Not hard to do if you can make scripts or simple programming.
|
|
|
|
Hueristic
Legendary
Offline
Activity: 3990
Merit: 5429
Doomed to see the future and unable to prevent it
|
|
March 16, 2015, 11:41:47 PM |
|
Plenty of Newbie trolls though.
They have to start somewhere! How would you setup a miner to adjust with diff like this?
It easy to script something that works off the difficulty reported by the 'getinfo' API for example. Better still might be using the 'getinfo' API from a node and a price API from an exchange. Maybe for you, I have never coded node communication before. Got a link for a quick example? If you are on linux just try $ curl localhost:18081/getinfo From there if you have any kind of scripting skills you can parse out the difficulty and go from there. If you don't have any scripting skills you won't be able to do this I'm afraid. Dos/Winblows here all I can do on nix is ls and grep. LOL I don't do Windows but I imagine there are some tools that can query a URL and parse the JSON. Not hard to do if you can make scripts or simple programming. K, I'll check into it l8r putting my old rig back online now. Don't ask me why I think, it will cost me about 2 bucks per xmr.
|
“Bad men need nothing more to compass their ends, than that good men should look on and do nothing.”
|
|
|
coinits
Legendary
Offline
Activity: 1582
Merit: 1019
011110000110110101110010
|
|
March 17, 2015, 12:16:49 AM |
|
If Satoshi were still in crypto, he'd be working on xmr who says he's out? who says he isn't? ( is it true? ) sorry i couldn't resist. who says it's a he? Not she, or them? ok rephrase: If Satoshi's still in crypto, Satoshi's working on xmr Satoshi was the named used for a team of crypto developers with DARPA. The name of the lead developer is Tatsuaki Okamoto.
|
Jump you fuckers! | The thing about smart motherfuckers is they sound like crazy motherfuckers to dumb motherfuckers. | My sig space for rent for 0.01 btc per week.
|
|
|
smooth
Legendary
Offline
Activity: 2968
Merit: 1198
|
|
March 17, 2015, 12:18:44 AM |
|
If Satoshi were still in crypto, he'd be working on xmr who says he's out? who says he isn't? ( is it true? ) sorry i couldn't resist. who says it's a he? Not she, or them? ok rephrase: If Satoshi's still in crypto, Satoshi's working on xmr Satoshi was the named used for a team of crypto developers with DARPA. The name of the lead developer is Tatsuaki Okamoto. Yes because if you are a Japanese guy and trying to be anonymous, the most logical thing to do is use a Japanese pseudonym (or better yet use your actual name like Dorian did). Hiding in plain sight; absolutely brilliant!
|
|
|
|
|