Call_Me_Bambi
|
|
April 06, 2018, 08:51:54 AM Last edit: April 06, 2018, 09:03:19 AM by Call_Me_Bambi |
|
Question on which ports to use at 'communitypool.stellite.cash' I'm currently using port 6600, as I think I read somewhere that using SSL on Claymore can give a more stable connection.
I'm running a small rig using Claymore's Cryptonight v11.3 miner, which of these ports is better ?
"stratum+ssl://communitypool.stellite.cash:6600" (68 miners) or "stratum+tcp://communitypool.stellite.cash:6699" (1389 miners)
Ssl only support on port 6600 Yes I know SSL is only supported on port 6600, what I'm asking is is port 6600 (on SSL with a few miners) better than port 6699 (on TCP with lots of miners)
|
|
|
|
stellite_question
Jr. Member
Offline
Activity: 222
Merit: 1
|
|
April 06, 2018, 08:54:46 AM |
|
Question on which ports to use at 'communitypool.stellite.cash' I'm currently using port 6600, as I think I read somewhere that using SSL on Claymore can give a more stable connection.
I'm running a small rig using Claymore's Cryptonight v11.3 miner, which of these ports is better ?
"stratum+ssl://communitypool.stellite.cash:6600" (68 miners) or "stratum+tcp://communitypool.stellite.cash:6699" (1389 miners)
Ssl only support on port 6600 Yes I know SSL is only supported on port 6600, what I'm asking is is port 6600 (on SSL with a few miner) better than port 6699 (on TCP with lots of miners) Pool operator says: It is only counter how many miner use SSL, pool have power of all miners from others port too so has no influence on the pool but don't know how it will relate to your setup.
|
|
|
|
Call_Me_Bambi
|
|
April 06, 2018, 09:06:06 AM |
|
Question on which ports to use at 'communitypool.stellite.cash' I'm currently using port 6600, as I think I read somewhere that using SSL on Claymore can give a more stable connection.
I'm running a small rig using Claymore's Cryptonight v11.3 miner, which of these ports is better ?
"stratum+ssl://communitypool.stellite.cash:6600" (68 miners) or "stratum+tcp://communitypool.stellite.cash:6699" (1389 miners)
Ssl only support on port 6600 Yes I know SSL is only supported on port 6600, what I'm asking is is port 6600 (on SSL with a few miner) better than port 6699 (on TCP with lots of miners) Pool operator says: It is only counter how many miner use SSL, pool have power of all miners from others port too so has no influence on the pool but don't know how it will relate to your setup. OK, thanks for the reply. I though that number of miners per port would have no affect on my overall performance so it does not really matter which port I use.
|
|
|
|
ArkadiyDeliev (OP)
Copper Member
Jr. Member
Offline
Activity: 140
Merit: 9
Anarchy
|
|
April 06, 2018, 09:06:11 AM |
|
No offense to the Devs and the coin. It is a good young team and I believe in them.They will do good with this coin But there are two things fake 1. Network hash-rate 2. Price of the coin ( whoever is pumping ) is a real amateur Please elaborate on your claims. How is the network hash rate fake? Pumping isn't done by the team, but we cannot confirm or deny whether some outsider is doing it for their own benefit, but then again, any coin is susceptible to being pumped or dumped by traders. Leave it arkady this guy is a fool chasing bumblebees thats all.. He is repeating me from month ago .An yeah still an amateur . SIMPLEMINER1 you are a spammer, in march you posted the same message than Altcner. By the way it's me who said that i was loving bumblebees. So what ? No offense to the Devs and the coin . Its is a good young team and i believe in them .They will do good with this coin But there is two things fake 1. Network hash-rate 2. Price of coin ( whoever is pumping ) is a real amateur No offense to the Devs and the coin. It is a good young team and I believe in them.They will do good with this coin But there are two things fake 1. Network hash-rate 2. Price of the coin ( whoever is pumping ) is a real amateur And you should go back to school. What comes first? Yes, march, after march we get April. However this is totally offtopic, its clear that Altcner copy the post from simpleminer1. It is not "its" it is "it's" Please go back to school and don't mess with smarter people than you. Then you shoud put a space between "first" and "?". I could talk about the rest Like the fact that you are off-topic. What a nice coin Stellite is good. (so what? i'm not off-topic that said) Grammar nazi Just don't give the trolls any attention. They will leave as soon as no one falls for their tricks.
|
|
|
|
ALEX_RAA
Newbie
Offline
Activity: 78
Merit: 0
|
|
April 06, 2018, 09:29:30 AM |
|
want to congrats the devs of Stellite coin: i and i think many others was too skeptical that this coin will grow to such price so i want to congrats all devs and founders of this coin and I want to apologize for skepticism. BIG UP
|
|
|
|
ArkadiyDeliev (OP)
Copper Member
Jr. Member
Offline
Activity: 140
Merit: 9
Anarchy
|
|
April 06, 2018, 09:54:17 AM |
|
want to congrats the devs of Stellite coin: i and i think many others was too skeptical that this coin will grow to such price so i want to congrats all devs and founders of this coin and I want to apologize for skepticism. BIG UP
Congrats to the community as a whole!
|
|
|
|
BroganBloodstone
|
|
April 06, 2018, 09:57:12 AM |
|
I noticed some people use stratum+tcp:// and others do not, can someone explain to me why this is and what does it do? Thanks guys
|
|
|
|
stellite_question
Jr. Member
Offline
Activity: 222
Merit: 1
|
|
April 06, 2018, 10:01:01 AM |
|
I noticed some people use stratum+tcp:// and others do not, can someone explain to me why this is and what does it do? Thanks guys Stratum is an over-the-wire protocol that solves the headaches created by HTTP when used for mining. To understand why Stratum is necessary, you have realize the fact that HTTP is designed for serving web applications and web pages, it's main job is to return files and not to coordinate peers. But miners need to do more than receive information, they also need to send. The following are issues with HTTP: Miner's request information If a miner wants a new mining job, they have to send a request through HTTP. Why bother with having the miners request this information when the mining pool knows more efficiently what each individual miner should be doing? What happens if a new block appears on the network and the miner doesn't know about this? So Stratum flips this and has the mining pool sending information as it becomes available, not miners asking for available information periodically. Long-polling Long-polling is a very hacky solution to fix the one-sided nature of HTTP. It's done by setting a very high timeout limit (say 10 seconds) where the server purposely delays sending information until it has something to send. Imagine a URL address taking minutes to load because the server is simply waiting for something to happen on it's network. This creates a lot of inefficiency as miners are requesting data that simply isn't there and servers have to maintain those connections as well for as long as mining happens. Ntime rolling This is a more technical problem, and its fix is considered the biggest innovation of stratum. Miners are given the ability to modify 2 fields, the nonce and the time. This becomes a problem for large miners as they can run through all possible values of the two fields in search of the solution. If a miner runs out of unique possibilities, they have to send a new request. Newer and faster miners make this more easier to do by the month and bandwidth usage for a pool increases dramatically. Stratum solves this by giving the miners a few more fields which seriously increase the total possible solutions to a block. TL;DR Stratum makes it so that the miner and pool are freed from the inefficiencies of HTTP, which is not meant to support mining at all. It makes communication more efficient meaning future exohash mining equipment will have enough jobs to complete while the pool operator isn't being gutted by massive bandwidth and server fees.
|
|
|
|
BroganBloodstone
|
|
April 06, 2018, 10:04:49 AM |
|
Then my next question becomes, why is it not recommended by pools? Even guides online I do not see it in. Just wondering and learning by the way, thanks for the response
|
|
|
|
stellite_question
Jr. Member
Offline
Activity: 222
Merit: 1
|
|
April 06, 2018, 10:05:57 AM |
|
Then my next question becomes, why is it not recommended by pools? Even guides online I do not see it in. Just wondering and learning by the way, thanks for the response That I don't know perhaps you can join this discord and ask the pool operators? https://discord.gg/mtQNrF
|
|
|
|
ArkadiyDeliev (OP)
Copper Member
Jr. Member
Offline
Activity: 140
Merit: 9
Anarchy
|
|
April 06, 2018, 10:11:26 AM |
|
Then my next question becomes, why is it not recommended by pools? Even guides online I do not see it in. Just wondering and learning by the way, thanks for the response That I don't know perhaps you can join this discord and ask the pool operators? https://discord.gg/mtQNrFThere are detailed guides on the community pool and CryptoKnight.
|
|
|
|
BroganBloodstone
|
|
April 06, 2018, 10:14:43 AM |
|
Then my next question becomes, why is it not recommended by pools? Even guides online I do not see it in. Just wondering and learning by the way, thanks for the response That I don't know perhaps you can join this discord and ask the pool operators? https://discord.gg/mtQNrFI noticed even the new dev pool does not have it. Thanks might do that. I had a look here and it is showing it should be used for claymore https://communitypool.stellite.cash/#/help/config_generatorI use xmr stak personally and never used or seen anyone that uses Stratum.
|
|
|
|
Miro1764n
Member
Offline
Activity: 232
Merit: 11
|
|
April 06, 2018, 10:17:05 AM |
|
Answer me please, guys, is it possible to change the path to the blockchain data?
|
|
|
|
stellite_question
Jr. Member
Offline
Activity: 222
Merit: 1
|
|
April 06, 2018, 10:22:12 AM |
|
Answer me please, guys, is it possible to change the path to the blockchain data?
Yes but via a workaround: Copy all the data from C:\ProgramData\stellite to where you want it(eg F:\stellite). Delete the C:\ProgramData\stellite folder. Open the Command Prompt(Run as Admin) and type: mklink /J C:\ProgramData\stellite F:\stellite Windows will now think that the folder at F:\stellite is located at C:\ProgramData\stellite All the data there will actually be stored on your F: drive.
|
|
|
|
SIMPLEMINER1
Newbie
Offline
Activity: 49
Merit: 0
|
|
April 06, 2018, 11:02:46 AM |
|
Come on Man bothering with 2226 xtl .. it went lost in the previous chain most probably . i lost some as well sooo.. here i will send you .. give me the address . For the devs good job guys .. hm but do you sleep ,, any time for girls or booze aa , finish with the spoon guys and go vacation . leave only satellite question to work .. hes needed.. for answering 1$ questions You can send them at this address : SEiSma33nKD8fVrxVpfQYg2qHxbFECZfQKeMfYy9GYmUDREifaj8QEqNM5CLJzU1zWGKQY8Zowi2Sb2 yPvtY5FGpj6vYHq7p6vK15TdrgRhXe God bless you man ! Se321oJNkfaGrN89Vmq6qGZb8587L53u2NVZbCrhhJujemaGMVNmr952oEsQAKGFojevSWDNcJK8GS8 Sy4manyrG2okoPyvfa Here 2200 as promised .. in wallet address not Crex24 I'm not sending on exchanges from respect from the coin... Ask the DEv now if they are willing to send them to you .. For the devs you still have space in your posted donation address guys Se321oJNkfaGrN89Vmq6qGZb8587L53u2NVZbCrhhJujemaGMVNmr952oEsQAKGFojevSWDNcJK8GS8 "space " Sy4manyrG2okoPyvfa
|
|
|
|
Miro1764n
Member
Offline
Activity: 232
Merit: 11
|
|
April 06, 2018, 11:26:28 AM |
|
Answer me please, guys, is it possible to change the path to the blockchain data?
Yes but via a workaround: Copy all the data from C:\ProgramData\stellite to where you want it(eg F:\stellite). Delete the C:\ProgramData\stellite folder. Open the Command Prompt(Run as Admin) and type: mklink /J C:\ProgramData\stellite F:\stellite Windows will now think that the folder at F:\stellite is located at C:\ProgramData\stellite All the data there will actually be stored on your F: drive. Thank You! Forgot about this method.
|
|
|
|
stellite_question
Jr. Member
Offline
Activity: 222
Merit: 1
|
|
April 06, 2018, 11:27:10 AM |
|
Come on Man bothering with 2226 xtl .. it went lost in the previous chain most probably . i lost some as well sooo.. here i will send you .. give me the address . For the devs good job guys .. hm but do you sleep ,, any time for girls or booze aa , finish with the spoon guys and go vacation . leave only satellite question to work .. hes needed.. for answering 1$ questions You can send them at this address : SEiSma33nKD8fVrxVpfQYg2qHxbFECZfQKeMfYy9GYmUDREifaj8QEqNM5CLJzU1zWGKQY8Zowi2Sb2 yPvtY5FGpj6vYHq7p6vK15TdrgRhXe God bless you man ! Se321oJNkfaGrN89Vmq6qGZb8587L53u2NVZbCrhhJujemaGMVNmr952oEsQAKGFojevSWDNcJK8GS8 Sy4manyrG2okoPyvfa Here 2200 as promised .. in wallet address not Crex24 I'm not sending on exchanges from respect from the coin... Ask the DEv now if they are willing to send them to you .. For the devs you still have space in your posted donation address guys Se321oJNkfaGrN89Vmq6qGZb8587L53u2NVZbCrhhJujemaGMVNmr952oEsQAKGFojevSWDNcJK8GS8 "space " Sy4manyrG2okoPyvfa ANN page or wiki?
|
|
|
|
hexus972
Newbie
Offline
Activity: 10
Merit: 0
|
|
April 06, 2018, 11:52:03 AM |
|
Se321oJNkfaGrN89Vmq6qGZb8587L53u2NVZbCrhhJujemaGMVNmr952oEsQAKGFojevSWDNcJK8GS8 Sy4manyrG2okoPyvfa Here 2200 as promised .. in wallet address not Crex24 I'm not sending on exchanges from respect from the coin... Ask the DEv now if they are willing to send them to you ..
Ahahah you are a joke all yourself. I also have a desktop wallet. I just use a Crex24 account to see if you would really sent coins on it, that's all. More seriously, theses 2200 XTL just represent about 1 hour of mining...so I don't really care about them (even though the XTL will be $50, it won't be the same ) My question was mainly asked to understand what could have happened, and to understand a little more how things goes. If tomorrow someone tell me he paids me 1.000.000 XTL and same thing happened, I would like to understand if the guys is ripping me off, or whatever. If someone can answer me, that would be appreciated. Transaction has been done on March 23, 18h 48min 13sec PS : I saw that some of you were wrong career, and should have been teachers...so please,do not be too cruel with me, I'm just a french guy trying to understand things.
|
|
|
|
SIMPLEMINER1
Newbie
Offline
Activity: 49
Merit: 0
|
|
April 06, 2018, 12:27:27 PM |
|
Se321oJNkfaGrN89Vmq6qGZb8587L53u2NVZbCrhhJujemaGMVNmr952oEsQAKGFojevSWDNcJK8GS8 Sy4manyrG2okoPyvfa Here 2200 as promised .. in wallet address not Crex24 I'm not sending on exchanges from respect from the coin... Ask the DEv now if they are willing to send them to you ..
Ahahah you are a joke all yourself. I also have a desktop wallet. I just use a Crex24 account to see if you would really sent coins on it, that's all. More seriously, theses 2200 XTL just represent about 1 hour of mining...so I don't really care about them (even though the XTL will be $50, it won't be the same ) My question was mainly asked to understand what could have happened, and to understand a little more how things goes. If tomorrow someone tell me he paids me 1.000.000 XTL and same thing happened, I would like to understand if the guys is ripping me off, or whatever. If someone can answer me, that would be appreciated. Transaction has been done on March 23, 18h 48min 13sec PS : I saw that some of you were wrong career, and should have been teachers...so please,do not be too cruel with me, I'm just a french guy trying to understand things. Ask the pool you were mining .. for details For Devs on bitcoin talk page 1 . you have space .. copy paste the address in wallet or blank page , the space will show
|
|
|
|
Miro1764n
Member
Offline
Activity: 232
Merit: 11
|
|
April 06, 2018, 12:29:20 PM |
|
One more question. What is the difference between address and integrated address? Is the Crex24 XTL address integrated? Does it mean that no need to use payment id when i send the coins to the exchange?
|
|
|
|
|