andrew24p
|
|
April 07, 2017, 04:19:48 AM |
|
hey bumba, I was wondering if you could help me out. I have a stuck transaction that hasnt been confirmed for a while now with a fee. I sent it to another address in my own wallet and it is just sitting with zero confirmations doing nothing. it was for a little over 15k
|
|
|
|
bumbacoin
Legendary
Offline
Activity: 1638
Merit: 1036
|
|
April 07, 2017, 05:24:38 AM |
|
hey bumba, I was wondering if you could help me out. I have a stuck transaction that hasnt been confirmed for a while now with a fee. I sent it to another address in my own wallet and it is just sitting with zero confirmations doing nothing. it was for a little over 15k
hopefully just a matter of resendtx via the debug/console. hope my PM helps
|
💦☔️🐳💚💖💛 | ★ | | ★
| | ████████████████ ████████████████ ████████████████ ████████████████ ████████████████ ████████████████ ████████████████ ████████████████ ████████████████ ████████████████ ████████████████ ████████████████ ████████████████ ████████████████ ████████████████ ████████████████ | | ★ | 🐠👻🍗🌳🐵
|
|
|
|
wantrepreneur
|
|
April 07, 2017, 02:35:33 PM Last edit: April 07, 2017, 05:08:57 PM by wantrepreneur |
|
hey! TehMoonwalker from the slack channel is planning to make an EXCL infographic (PIVX vs EXCL) + (Dash vs EXCL), similar to the one PIVX made which helped make them get so popular. Checkout the link below, we're getting one of these for EXCL! https://pivx.org/2017/03/08/infographic-pivx-vs-dash/
|
|
|
|
reader31
|
|
April 07, 2017, 06:48:59 PM |
|
Thanks bumba, just to be clear, it goes in the exclivecoin file in appdata/roaming where the config, wallet, ect is right? absolutely you dont' need to delete the old chain or anything, it'll continue from where it is up to. i just noticed there's also a bootstrap available here, http://cryptochainer.com/dir/?page_id=881but i dont see any info's on how old/current it is. also..If we are going to do a hardfork then we should consider uping the masternode rewards to somewhere near 50% to encourage ppl to create more masternode?
I agree, I think a 7500 requirement and a 50% masternode reward is a good incentive for people to invest in the network long term while also incentivizing buying the currency. it is actually 50% atm, seems a incorrect amount in OP https://github.com/exclfork/ExclusiveCoin/blob/master/src/main.cpp#L4675Someone should update this in the OP then!
|
|
|
|
laugh2btc
|
|
April 07, 2017, 09:00:15 PM |
|
How many coins do i get with a masternode in 1 month?
|
|
|
|
bumbacoin
Legendary
Offline
Activity: 1638
Merit: 1036
|
|
April 08, 2017, 02:12:27 AM |
|
How many coins do i get with a masternode in 1 month?
1 minute blocks ~1440 blocks/day @ 0.5excl masternode reward apparently 49 masternodes atm. 1440/49 = ~29 blocks each masternode/day as masternode count changes so does avg reward. edit. mn count just went to 50 no idea how many there really are
|
💦☔️🐳💚💖💛 | ★ | | ★
| | ████████████████ ████████████████ ████████████████ ████████████████ ████████████████ ████████████████ ████████████████ ████████████████ ████████████████ ████████████████ ████████████████ ████████████████ ████████████████ ████████████████ ████████████████ ████████████████ | | ★ | 🐠👻🍗🌳🐵
|
|
|
|
andrew24p
|
|
April 08, 2017, 11:19:45 AM |
|
We should get a nice graphic with all the information to put on the first post to help show a high level of quality of our coin. Are there any graphic artists that might be willing to do it ? I could do a mock up, but im an amateur photoshopper at most.
|
|
|
|
tehMoonwalker
|
|
April 08, 2017, 12:15:30 PM |
|
We should get a nice graphic with all the information to put on the first post to help show a high level of quality of our coin. Are there any graphic artists that might be willing to do it ? I could do a mock up, but im an amateur photoshopper at most.
i can help with graphics for some free coins
|
|
|
|
wantrepreneur
|
|
April 08, 2017, 01:13:26 PM Last edit: April 09, 2017, 01:47:35 AM by wantrepreneur |
|
We should get a nice graphic with all the information to put on the first post to help show a high level of quality of our coin. Are there any graphic artists that might be willing to do it ? I could do a mock up, but im an amateur photoshopper at most.
yes, agreed. there are so many small improvements we can do to make excl better, let's keep it up guys things are starting to look really bullish.
|
|
|
|
bumbacoin
Legendary
Offline
Activity: 1638
Merit: 1036
|
|
April 09, 2017, 02:22:14 AM Last edit: April 09, 2017, 02:59:52 AM by bumbacoin |
|
this is going to be a quick and slightly messy post i'm not going in depth to how you do each step, so hopefully you can work it out or someone else can expand it it uses the exclusivecoind.exe which is the command line wallet, no gui, so you send it rpc calls to interact with it. a basic method to address the seeming issue where running multiple masternode with a single exclusivecoin instance is problematic, they stop after a while.i use a workaround in linux where i setup a cronjob to restart them every 15 minutes. the basic format is */15 * * * * * exclusivecoind masternode start-many
to replicate this in windows you need a couple basic steps, not to mention setting up yr actual masternodes. 1) you need the exclusivecoind.exe available here https://github.com/exclfork/ExclusiveCoin/tree/master/releasesto run the coind the exclusivecoin.conf file will need rpcuser=yourusername rpcpassword=youruserpassword
2) a bat file to run. in the bat file, will be a simple loop to send a command to the exclusivecoind.exe 1- download the file, make sure you added rpcuser/rpcpassword to your .conf file to run you will need a command prompt, cd to where file is located start /b exclusivecoind.exe using "start" means it will run in background so you can interface with it eg. "exclusivecoind.exe getinfo" 2- in a windows explorer navigate to where you want the bat file to run (mine is in same location as coind.exe), right click > create new text file rename to "whatever.bat" right click file > edit :loop exclusivecoind.exe masternode start-many timeout /t 900 /nobreak goto :loop open another command terminal, navigate to where the bat file is then start it. done. now you can send rpc commands to the coind in the first command window while the second just loops until you close it. if yr masternodes stop due to the "issue", then every 15 minutes (900 seconds) the command to start-many should kick them back into life. NOTE. you cannot run the qt-wallet and teh coind at the same time unless you use seperate datadirectories.
|
💦☔️🐳💚💖💛 | ★ | | ★
| | ████████████████ ████████████████ ████████████████ ████████████████ ████████████████ ████████████████ ████████████████ ████████████████ ████████████████ ████████████████ ████████████████ ████████████████ ████████████████ ████████████████ ████████████████ ████████████████ | | ★ | 🐠👻🍗🌳🐵
|
|
|
|
wantrepreneur
|
|
April 09, 2017, 02:27:25 AM |
|
bumba you're a god, thanks boss.
|
|
|
|
bumbacoin
Legendary
Offline
Activity: 1638
Merit: 1036
|
|
April 09, 2017, 02:50:08 AM |
|
bumba you're a god, thanks boss.
heh i hope it works i havent actually tried it on windows but it looks ok. lol
|
💦☔️🐳💚💖💛 | ★ | | ★
| | ████████████████ ████████████████ ████████████████ ████████████████ ████████████████ ████████████████ ████████████████ ████████████████ ████████████████ ████████████████ ████████████████ ████████████████ ████████████████ ████████████████ ████████████████ ████████████████ | | ★ | 🐠👻🍗🌳🐵
|
|
|
|
Termie
|
|
April 09, 2017, 10:33:50 AM |
|
Dump slowly and will end up to the original price.
direct opposite at the moment. Price and demand slowly rising, available coins decreasing.
|
|
|
|
bits4books
Sr. Member
Offline
Activity: 854
Merit: 264
Crypto is not a religion but i like it
|
|
April 09, 2017, 10:54:37 AM |
|
nice work on the coin
|
|
|
|
exclusivecoin (OP)
Full Member
Offline
Activity: 195
Merit: 100
EXCL Coin Official Developer
|
|
April 09, 2017, 11:11:27 PM Last edit: April 10, 2017, 01:17:34 AM by exclusivecoin |
|
Slack added to OP + website. Twitter looks adujested. Buys looking good, we have more and more MasterNodes now too so network is secured.
Edited OPs numbers: Algorithm: 100% PoS Block reward: 0.5 EXCL MasterNode:5 000 EXCL to start, 0.5 EXCL Reward per Block 40 confirms to maturity 24 hour stake min age
|
|
|
|
forzendiablo
Legendary
Offline
Activity: 1526
Merit: 1000
the grandpa of cryptos
|
|
April 10, 2017, 03:38:53 AM |
|
Slack added to OP + website. Twitter looks adujested. Buys looking good, we have more and more MasterNodes now too so network is secured.
Edited OPs numbers: Algorithm: 100% PoS Block reward: 0.5 EXCL MasterNode:5 000 EXCL to start, 0.5 EXCL Reward per Block 40 confirms to maturity 24 hour stake min age
WOW thanks for this great updates. i have been with this coin since day one, and now i feel how its great!
|
yolo
|
|
|
bits4books
Sr. Member
Offline
Activity: 854
Merit: 264
Crypto is not a religion but i like it
|
|
April 10, 2017, 02:19:15 PM |
|
excl looking good , good job dev
|
|
|
|
happycamper89
Newbie
Offline
Activity: 9
Merit: 0
|
|
April 10, 2017, 04:54:13 PM |
|
this is going to be a quick and slightly messy post i'm not going in depth to how you do each step, so hopefully you can work it out or someone else can expand it it uses the exclusivecoind.exe which is the command line wallet, no gui, so you send it rpc calls to interact with it. a basic method to address the seeming issue where running multiple masternode with a single exclusivecoin instance is problematic, they stop after a while.i use a workaround in linux where i setup a cronjob to restart them every 15 minutes. the basic format is */15 * * * * * exclusivecoind masternode start-many
to replicate this in windows you need a couple basic steps, not to mention setting up yr actual masternodes. 1) you need the exclusivecoind.exe available here https://github.com/exclfork/ExclusiveCoin/tree/master/releasesto run the coind the exclusivecoin.conf file will need rpcuser=yourusername rpcpassword=youruserpassword
2) a bat file to run. in the bat file, will be a simple loop to send a command to the exclusivecoind.exe 1- download the file, make sure you added rpcuser/rpcpassword to your .conf file to run you will need a command prompt, cd to where file is located start /b exclusivecoind.exe using "start" means it will run in background so you can interface with it eg. "exclusivecoind.exe getinfo" 2- in a windows explorer navigate to where you want the bat file to run (mine is in same location as coind.exe), right click > create new text file rename to "whatever.bat" right click file > edit :loop exclusivecoind.exe masternode start-many timeout /t 900 /nobreak goto :loop open another command terminal, navigate to where the bat file is then start it. done. now you can send rpc commands to the coind in the first command window while the second just loops until you close it. if yr masternodes stop due to the "issue", then every 15 minutes (900 seconds) the command to start-many should kick them back into life. NOTE. you cannot run the qt-wallet and teh coind at the same time unless you use seperate datadirectories. Yea I was having the same case issue with timing out. Followed your post and, voila! Now I'm mining blocks non-stop. Thanks!
|
|
|
|
Termie
|
|
April 10, 2017, 06:15:23 PM |
|
|
|
|
|
bits4books
Sr. Member
Offline
Activity: 854
Merit: 264
Crypto is not a religion but i like it
|
|
April 10, 2017, 09:06:00 PM |
|
Bittrex is good for the coin , maybe we should contact poloniex also for adding the coin .
|
|
|
|
|