Bitcoin Forum
April 23, 2024, 07:10:09 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
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 »
221  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [WHY] WHYCOIN OFFICIAL ANN | Non-Profit | 10% PoS on: January 19, 2016, 11:14:09 PM
i only have 5000 conflicted WHY?? in my wallet?Huh

try going into console and type
repairwallet

if that doesnt work, because the chain is still quite small you may as well just delete the blockchain in your datadir, then on restart it will reload the chain and get all transactions from the chain
that means pretty much deleting everything EXCEPT wallet.dat whycoin.conf peers.dat << wallet.dat holds all yr addresses and coins, whycoin.conf and peers.dat hold data re connecting to the network so they're handy to keep (although you probably don't have a whycoin.conf doesnt matter)

if you're in windows, in an explorer window, in the address bar type
%appdata%
then go into
roaming
then look for whycoin (or something similar).. this is the folder to delete the chain from


--
this suggests to me that should the code get any updates, adding -reindex might be useful Smiley
222  Alternate cryptocurrencies / Announcements (Altcoins) / Re: CannabisCoin [CANN][X11][Official] Developments & Discussions on: January 19, 2016, 01:15:25 PM

as far as wallets go i only look for base functionality.

the major suggestion i can make is to update some of the base code,
for example bitcoins 'headers-first synchronization' which removes the need for use of bootstrap by making sync time much faster.
https://bitcoin.org/en/release/v0.10.0#faster-synchronization

223  Alternate cryptocurrencies / Announcements (Altcoins) / Re: DigiCube C-CEX MERCHANT ANDROID StakeStick Smart TV Staker on: January 19, 2016, 02:03:39 AM
haha from http://www.freestaking.com/chat/

Quote
SpayseMickGhee
Awaiting the results of this Stakestick... needless to say i have little faith

couple days ago



--

but it's ok. some address has 32btc worth of cube
224  Alternate cryptocurrencies / Announcements (Altcoins) / Re: 🎅 DigiCube 🎄 C-CEX MERCHANT 🎄 ANDROID 🎄 StakeStick Smart TV Staker on: January 19, 2016, 01:52:33 AM

meanwhile Jan 16th comes and goes ......... and we get a new logo
225  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [DRZ] [DROIDZ] [ANTI-INSTAMINE] - A FRESH NEW START - WALLET UPDATES!!! on: January 19, 2016, 01:36:33 AM
spent a while today trying to get a masternode in action :p

anyone got one working yet ??

Was trying to run masternode myself too. It didn't work.
Spent some time today, but it looks like I found the reason of problem (at least one of the reasons). It is here:

https://github.com/K1G3C/Droidz-V3/blob/55f2cb40932f14349492709907dc593404799589/src/main.h#L98

Quote
inline int64_t GetMNCollateral(int nHeight) { return 100000; }

Look carefully at the number of zeroes Smiley

lol i noticed a little inconsistency with the values scattered around in the code, i wasn't actually sure if that line was required size of masternodes,
.. now we just need to get 100k to try out Cheesy

226  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [DRZ] [DROIDZ] [ANTI-INSTAMINE] - A FRESH NEW START - WALLET UPDATES!!! on: January 18, 2016, 11:49:02 AM
spent a while today trying to get a masternode in action :p

anyone got one working yet ??
227  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][Datacoin] Datacoin blockchain start announcement (Minor code upd + logo) on: January 16, 2016, 03:53:47 AM
Thanks pineapples !

We will add a 'Help setting up a node' section to the site, I'll credit you on the page!

no worries Smiley
the tricky bit i didnt go through is setting up a tunnel with the vps. so you can chat with it through a terminal interface.

digitalocean offer one through their droplet infos, but i've always had problems using it, probably just bad ping.
windows users need to use putty, but as i'm on OSX i can just open a terminal and just connect Cheesy

228  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [DRZ] [DROIDZ] [ANTI-INSTAMINE] - A FRESH NEW START - WALLET UPDATES!!! on: January 16, 2016, 02:09:11 AM
hi people, i have some orders on bittrex with drz. And just saw that market is disabled now and looking for answers. So when the market would start working again? i dont understand about swaps,escrow and all that blah blah blah

the swap is to enable new coin features, using a brand new code base.
this requires a new blockchain which will not support the old coin. coins are being swapped old for new.

two exchanges, c-cex and yobit swapped their coins on exchange, so they now hold the new and current blockchain.

bittrex did not swap coins, but they seem to be helping by shutting market to help with the swap.

there will be a further manual exchange of coins to the new version, this does not seem operational yet but will no doubt entail you sending coins to an address, then receiving brand new v3 droidz.
229  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][Datacoin] Datacoin blockchain start announcement (Minor code upd + logo) on: January 15, 2016, 06:32:47 AM
it's pretty easy to setup a basic node on a vps (which is what i'm doing)

this is amusingly the guide i generally follow, https://github.com/coincreator/tutorials/tree/master/tutorials/LinuxDaemonHosting
the important part is installing the correct libraries.
and it uses ubuntu, so the commands below will need to be changed slightly for other flavours of linux

obviously there are a few things to change, such as git address but it's pretty much the same.
edit. i added adding a swap file in, can be useful Cheesy its' down the bottom

here's a basic variation on that link which will be for dtc..
once your vps is started and you've logged in.
1. update the vps OS and install libraries
2. get source code and start compiling
3. edit datacoin.conf -- generally i start the daemon first, then it closes with an error about needing this .conf file.
it will spit out an example rpcuser and rpcpassword details. i just copy/paste these into the conf. also copy/paste addnodes from below
4. start for real.

Code:
sudo apt-get update
sudo apt-get install build-essential libboost-all-dev libcurl4-openssl-dev libdb5.1-dev libdb5.1++-dev make git

## look below at adding swap file, do it here

git clone https://github.com/foo1inge/datacoin.git
cd ~/datacoin/src/
make -f makefile.unix "USE_UPNP=-"

./datacoind &
touch /root/.datacoin/datacoin.conf
nano /root/.datacoin/datacoin.conf

## paste stuff, then to exit
[ctrl-x]
[y]
[enter]

./datacoind &

./datacoind getinfo

hopefully now your daemon will spit out some promising info that it is working, and connected !!


conf content - change username and password to yr whatever
Code:
rpcuser=useretc
rpcpassword=passwordofyourchoice
addnode=107.170.165.126
addnode=108.61.57.85
addnode=125.135.114.73
addnode=162.243.125.211
addnode=198.12.12.83
addnode=46.4.147.38
addnode=144.76.123.194
addnode=80.74.157.31
addnode=104.131.69.82
addnode=graymines.net:4777



adding a 1gb swap file. virtual ram basically, will help with some memory based compiling errors.
you may as well do this early in the procedure

Code:
dd if=/dev/zero of=/swapfile bs=1M count=1024
mkswap /swapfile
swapon /swapfile

## then to make it persistent, ie run on reboot you need to edit fstab

nano /etc/fstab
## then at bottom of file paste
/swapfile  swap      swap    defaults         0 0

[ctrl-x],[y],[enter]


note. lines with ## are not to be entered.
230  Alternate cryptocurrencies / Altcoin Discussion / Re: I'm Tech-Impaired But in Charge of Spearheading Development of an Altcoin on: January 15, 2016, 06:08:32 AM
if your app is awesomely used and popular, then you could consider adding an in-house currency which you could distribute through the app itself.
personally i'd recommend PoS as it's easier to protect the network by holding a % of premine in house staking wallets, rather than putting it at risk to the amount of random rogue hash or even legitimate coin-switching pools.

Choosing an inferior consensus model in order to create an inferior copycoin is of low value to his users (Edit: because as the linked post points out, wide-scale adoption drives value and wide-scale adoption via network efforts requires trust in the consensus model).

inferior consensus model vs blockchain at risk from any person with a middling mining rig...  unless POW coin becomes incredibly valuable to mine of course.

there are coins trading that you can usefully cpu mine with a cheap arse vps. i could put my low end gaming puter on them and screw them up ...
231  Alternate cryptocurrencies / Altcoin Discussion / Re: [NEWS] Monero David Latapie French Police Fraud [updated] on: January 15, 2016, 06:02:15 AM
since when is presstab = david latapie ??

Since he admitted on the comment right before yours  Roll Eyes

I think he was kidding?

lol some people don't get sarcasm i think

spoetnik, you dont come across as the sanest of people, if you have evidence just post it instead of people having to filter through your tourette style ramblings
232  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [DRZ] [DROIDZ] [ANTI-INSTAMINE] - A FRESH NEW START - WALLET UPDATES!!! on: January 15, 2016, 01:44:39 AM
So after all swap is done successfully ?
And now we can withdraw coins to make masternodes?
Is it everything ready and working?
Anyone tried to make master?

i have withdraw from c-cex and yobit and am staking.

masternodes will not become operational til the 16th.. i assume some particular block number ??
can we have some more info on when more precisely?
due to international timezones, the 16th is nearly 48hrs long ?? lol i've never thought of that before
233  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ANN [Shitest Coin in the World ] [SCitW] x13 Algo PoW/PoS Hybrid on: January 14, 2016, 02:01:17 AM

dev, give yourself the next reward. you deserve several months worth Smiley
234  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] BitPound [BTP]- sha256 pow/pos/airdrop on: January 14, 2016, 02:00:18 AM
no. first of all. We did not stake with the airdrop coins except the POS test-mode (~70 POS blocks) which was necesary in live-net. Those coins are in the airdrop wallet and will also be split upon community. There were 4 transaction from the wallet. 2 tx with the developer stake (those coins are not staking too). 2 tx as bounties for wallet-compilation (from community-members) and general consulting/support as well as invested time. That is it. No other transaction. No staking for our profit.


airdrop will start this weekend. i will write down the date in the first post. wallet will also have a update very soon (stealth keys, GUI-style, checkpointing).

small preview:

Ok Cool, excellent, its just that the mining seemed to have petered out, ill put some small hash back on it.
May i suggest you changing the preview  from BC to BP.  cheers

because you couldnt be bothered making a qt for the coin release ...
235  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [DRZ] [DROIDZ] [ANTI-INSTAMINE] - A FRESH NEW START - WALLET UPDATES!!! on: January 14, 2016, 01:48:51 AM
I'm not having any issues with the network.. My wallet has been running and staking all day. Master nodes aren't running yet.
I have the same problem

lol. that doesnt make sense.

but masternodes are not working yet. so change your droidz.conf so you can stake them until they do work.
either comment out or change value

#staking=0
or
staking=1
236  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [DRZ] [DROIDZ] [ANTI-INSTAMINE] - A FRESH NEW START - WALLET UPDATES!!! on: January 14, 2016, 01:36:32 AM
  • i'm staking now. will worry about masternodes in a couple of days Smiley
  • i agree to use at least some of that 50k to stake. keep the chain healthy for at least a few more days while people get their coins sorted
  • i notice c-cex has withdrawl fee of 0.1 whilst yobit has 0.002
  • is there an explorer for new chain??
237  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [DRZ] [DROIDZ] [ANTI-INSTAMINE] - A FRESH NEW START - WALLET UPDATES!!! on: January 13, 2016, 08:30:51 AM
i recall you used to have to know which vin it was in the transaction .. and put that somewhere :p

is that still applicable ??
238  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [DRZ] [DROIDZ] [ANTI-INSTAMINE] - A FRESH NEW START - WALLET UPDATES!!! on: January 13, 2016, 08:21:35 AM
i'm still waiting for my withdrawl Sad

i seem having a similar problem when attempting masternodes with some other coin :p



Well.. Partial success.  I have 10,000 DRZ in my new wallet, however, when following the instructions for setting up a Masternode, I get this:

Error: could not allocate vin for collateralAddress

I do have a .conf file with all the information in it...
I do have the wallet unlocked...

Hmm..
239  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [DRZ] [DROIDZ] [ANTI-INSTAMINE] - A FRESH NEW START - WALLET UPDATES!!! on: January 13, 2016, 01:25:38 AM

There is no need for a manual coin swap at this point. What you do is re-use the same wallets. It's called wallet forward compatibility. It's quite simple to do. You create a new blockchain, premine all the old coins, send the coins back to the same addresses that first owned them and then make sure to keep the original blockchain to maintain transparency of coin creation.

The coin swap process should require no participation from anyone.

The exchanges and users would simply backup their wallet.dat, upgrade the software and then copy the wallet.dat into the new directory. Paper wallets would work the same as before. Import the private key and your coins are still there at the same address.



All transparency is lost in manual coin swaps making the cryptocoin nothing more than fakeness.


it is possible that the devs will fudge the swap to their own benefit, i hope with your obvious concern you will ensure that they are kept fair and honest Smiley

please devs, after the exchange swaps, we will require a comprehensive history of all manual transfers and remaining pre-mine. thank you.

lol, and don't forget that the chain will be running the entire time of manual swap and minting new coins. this is outrageous Cheesy
240  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [DRZ] [DROIDZ] [ANTI-INSTAMINE] - A FRESH NEW START - WALLET UPDATES!!! on: January 13, 2016, 01:17:53 AM
now waiting on a manual withdrawl from c-cex so i can start a masternode Cheesy

--

couple of things in regards to setting up .

>> i'm running a daemon, do i need a masternode.conf ?
or are they old tech Smiley


also the guide in the OP seems to be lacking, the following seems to miss the part where you paste the data from "get config" into your droidz.conf ?? or save the notepad file as droidz.conf ??

Quote
Again select your new masternode and click "get config"
A window should now open if this is the case Please copy All of it and paste it in notepad.
Once you have pasted said stuff into notepad
Please replace the fields that say "REPLACEME" with Whatever You Wish and save
The next step is to add this line into droidz.conf
staking=0
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 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!