Search content
Sort by

Showing 20 of 100 results by webchris
Post
Topic
Board Gambling
Re: Bit-Exo.com Casino 🏆Weekly contests💰Jackpot🎲Dice🎰Slots🎡Roulette+more!
by
webchris
on 25/06/2020, 20:15:46 UTC
What are the odds of hitting that jackpot? I need a 2-fer (jackpot + weekly bonus)!
Post
Topic
Board Gambling
Re: Bit-Exo.com Casino 🏆Weekly contests💰Jackpot🎲Dice🎰Slots🎡Roulette+more!
by
webchris
on 19/06/2020, 15:22:09 UTC
Nice promo, haven't done any crypto betting so this is my excuse to come back! And bit-exo is a great site.
Post
Topic
Board Bitcoin Discussion
Re: Punish all exchange especially Coinbase
by
webchris
on 06/04/2018, 18:27:07 UTC
Exchanges provide vital functions to the community. While they are in a great spot right now to capitalize on the demand, it's hard to blame them for price action.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN]F0ME - DEDICATED POS - 90% AIRDROP - 16 ROUNDS - REG NOW
by
webchris
on 08/02/2018, 00:51:07 UTC
I also wondering how PoS pool works. anyone could explain me this ?

A PoS pool would basically be a shared wallet that you send your coins to for staking purposes. If you had 10 F0ME and wanted to stake consistently, you could send them to a pool. When the pool earns a stake, it would divide it up to all the investors at the pool based on the number of coins they have invested. Alternatively, if you left your wallet open with 10 F0ME it might take weeks or longer to stake - so it takes a lot of patience and some luck.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN]F0ME - DEDICATED POS - 90% AIRDROP - 16 ROUNDS - REG NOW
by
webchris
on 07/02/2018, 15:20:43 UTC
I am a big fan of the way the airdrops work. 16 rounds give everyone a chance to hear about and participate. And Discord seems like a great platform for starting a new coin as it builds a community. Lots of good discussion goes on in the F0ME discord chat.
Post
Topic
Board Development & Technical Discussion
Re: Get list of all addresses with a balance over x?
by
webchris
on 29/01/2018, 15:21:12 UTC
Wouldnt it be easiers if you pulled all discovered addresses from an existing db
then query for there balances
and filter out the ones < x

Problem solved. ?

Then you are relying on the other database to be up-to-date. Plus that db is going to be pretty large as there are quite a few discovered addresses.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] GARLICOIN - Reddit's Garlic Bread Worshiping Currency
by
webchris
on 29/01/2018, 01:09:32 UTC
Curious what the airdrop is going to do to the price of this one.
Post
Topic
Board Bitcoin Discussion
Re: Bitcoin cannot crash or go down.
by
webchris
on 26/01/2018, 19:19:14 UTC
More people are waking up to Bitcoin every day. I'm doing my part to educate people.
Post
Topic
Board Bitcoin Technical Support
Re: Lost Bitcoins in Bitcoin Core wallet - what now?
by
webchris
on 21/01/2018, 16:03:56 UTC
You haven't pointed out any problems with Bitcoin or Bitcoin Core. When you "send" bitcoin to another address, until the transaction has been secured in a block, it is not final no matter what wallet you are using. It is a really bad idea to delete you wallet until the transaction has gone thru, and given how small the wallet file is, it could be preserved indefinitely just in case. What if someone (or yourself) who had sent coins to that wallet in the past accidentally reused an address? That bitcoin would be permanently lost if you did not keep a backup of your wallet/keys.
Post
Topic
Board Bitcoin Technical Support
Re: money lost? reward of $ 500
by
webchris
on 12/01/2018, 01:01:19 UTC
Given that Bitcoin Cash and Bitcoin keys are backwards compatible I'm not sure why creating a key on one chain doesn't result in an identical in another chain. I'm sure many of their customers have performed similar goofs.
Post
Topic
Board Bitcoin Technical Support
Re: Did I just lose my Bitcoins - Unconfirmed transaction since 12/29
by
webchris
on 12/01/2018, 00:47:48 UTC
The transaction should eventually be cleared from the mempool and you can resubmit with a higher fee.
Post
Topic
Board Development & Technical Discussion
Re: Get list of all addresses with a balance over x?
by
webchris
on 11/01/2018, 22:43:13 UTC
give me few hours, ill upload latest one.

Your lists just pull addresses with balances right? You don't list every address on the blockchain, or do you?
Post
Topic
Board Development & Technical Discussion
Re: Can't import keys - unexpected token 'importprivkey'
by
webchris
on 24/12/2017, 15:16:35 UTC
Thank you achow101! That was my problem. When I installed Bitcoin Core I set the data dir to a custom directory. When I run bitcoind, it uses the default directory in C:\Users.
Post
Topic
Board Development & Technical Discussion
Re: Can't import keys - unexpected token 'importprivkey'
by
webchris
on 23/12/2017, 19:20:32 UTC
Where are checking to see if there are addresses?

When I open Core, I check "File / Sending Address" and "File / Receiving Addresses".

So this is interesting. I dumped my wallet using the command line (bitcoin-cli) and it shows my newly added keys. So I tested adding more and dumping, and they are adding. But, my wallet.dat file has not been modified (size and data modified unchanged). Is it possible bitcoin-cli is accessing/editing a different wallet than Bitcoin Core GUI?
Post
Topic
Board Development & Technical Discussion
Re: Can't import keys - unexpected token 'importprivkey'
by
webchris
on 23/12/2017, 18:51:06 UTC
Thanks for the reply! So I switched my batch file to use bitcoin-cli instead of bitcoind and I'm no longer getting the errors as before. Though, it doesn't actually add keys to my Bitcoin Core wallet. I'm clearly missing a step.

So here's what I'm doing. I have Bitcoin Core on my Windows PC. I have tried this with it closed and open, same results. I have to run bitcoind in one command prompt (to get bitcoin-cli to work). I run a command like this in a batch:

Code:
"C:\Program Files\Bitcoin\daemon\bitcoin-cli.exe" importprivkey "MYKEYHERE" "label1" false

It gives no error. When I open/check Bitcoin Core, there are no additional addresses added. I know I could add them individually using Core's console, but I need a batch file since I have many addresses to add and wouldn't be able to do them one-by-one.
Post
Topic
Board Development & Technical Discussion
Can't import keys - unexpected token 'importprivkey'
by
webchris
on 23/12/2017, 04:22:12 UTC
I have exported/dumped private keys from multiple wallets and I'm trying to import them into one wallet. There are too many to do them one at a time. I am attempting to import them using a batch file but it seems "importprivkey" is not part of the bitcoind daemon anymore, or I am missing something.

I am running Bitcoin Core 0.15.1.

My batch file looks like this:

Code:
"C:\Program Files\Bitcoin\daemon\bitcoind.exe" importprivkey MYPRIVATEKEYHERE label-1 false
"C:\Program Files\Bitcoin\daemon\bitcoind.exe" importprivkey MYPRIVATEKEYHERE label-2 false

The error I get is:
Error: Command line contains unexpected token 'importprivkey', see bitcoind -h for a list of options.


When I try bitcoind -h I see no importprivkey option anywhere.

Any help would be greatly appreciated!
Post
Topic
Board Gambling
Re: BITDICE - 🎲🎲🎲 THIS WEEK 105BTC GOES TO ASH AND 75BTC TO SOOP! 🎰🎰🎰
by
webchris
on 25/05/2017, 00:16:12 UTC
Just wasn't sure if I had a balance in one of my accounts. Can't seem to even check.
Post
Topic
Board Gambling
Re: BITDICE - 🎲🎲🎲 THIS WEEK 105BTC GOES TO ASH AND 75BTC TO SOOP! 🎰🎰🎰
by
webchris
on 24/05/2017, 22:50:58 UTC
I have some old accounts I was trying to log into and can't seem to login to the new site (accounts are over a year old). Was there a purge of accounts, or is there some migration link I missed?
Post
Topic
Board Gambling
Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts!
by
webchris
on 09/10/2016, 16:12:01 UTC
After resetting settings and trying again, the auto-invest works as intended. Thanks!
Post
Topic
Board Gambling
Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts!
by
webchris
on 09/10/2016, 13:43:38 UTC
I am having a problem with the Invest option on the Stop Conditions tab.

If I set a limit of 25.0000000 and click enabled, and choose Invest 5.000000, the bot will invest 5.0 after each bet until it can't (meaning my balance is below 5.0). What I want it to do is, if my balance is 25 it invests 5, then the balance is at 20. Whenever it gets up to 25 again, it invests 5 again. Am I doing something wrong? This is on Just-Dice btw.

I'll look into it. Can you tell me at which site you were using it?

It's at Just-Dice. I would love to set it to auto-invest winnings over a certain threshold. I know it's designed to do that, as I have done it before. Thanks!
On a related note, does the donate option work for clams or does it send to a BTC address?