Bitcoin Forum
May 09, 2024, 04:31:54 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 62 63 64 65 66 67 68 ... 82 »
341  Economy / Computer hardware / Re: [WTS] R9 290 [w] .15 btc shipped price lowered on: December 19, 2016, 04:11:32 PM
Where on the planet are you located??

new zealand, however I am offering free shipping

Even to Canada?
 
Only .15 btc shipped?


escrow?

I'll add to this. Proof you own the 290 you are trying to sell? A picture goes a long way here.
342  Economy / Investor-based games / Re: Get 10 MH/s free cloud mining power - No Investment on: December 18, 2016, 06:25:01 PM
Might as well, PM please.
343  Economy / Services / Re: Withdrawal from Gameflip.com - you get 25% on: December 17, 2016, 05:24:43 AM
I've done something similar to this before - feel free to PM me / respond here with details and I will help out.

Sending you a private message!

Waiting on the payment to clear, etc.
User has provided an address to get BTC Payment and it is 1BnoyuztpfseJerHgFMAcHHptCPNTdkQqh.

Once the account used to retrieve the funds from Gameflip has been succesfully closed (has personal information on it) I'll send the agreed $5 in BTC to the address above.

Please quote me so that this is saved. Thanks!
344  Economy / Services / Re: Withdrawal from Gameflip.com - you get 25% on: December 17, 2016, 02:55:08 AM
I've done something similar to this before - feel free to PM me / respond here with details and I will help out.
345  Bitcoin / Mining support / Re: Antminer S9 breakdown issues - How frequent? on: December 16, 2016, 07:53:58 PM
Saw this in the main S9 board today.

I just unplug the bad boards and then it runs fine.  Out of the 12 S9's I have bought from Bitmain, 5 of them have needed repair.

They have never gotten over 72F.  I have 140 S7's and maybe 10 bad boards between them all.  Out of the 200+ S5's I had there were maybe 5 bad boards total and out of the 300+ S3's I had maybe 4 bad boards.

I really hope they fix the S9's.  The R4's seem to be running great.  I have had no problems with them.

So 7 bad boards out of 36 total S9 boards = 19.4% failure rate.  Ugh.
346  Economy / Digital goods / Re: GIFT -MACYS - STARBUCKS- NORDSTROM - HIGH- KOHLS CASH- PRICE GOOD on: December 16, 2016, 04:32:59 PM
What are your prices? Not interested in contacting you via Skype.
347  Bitcoin / Bitcoin Technical Support / Re: Hard Drive stopped spinning - Bitcoin Wallet roughly 1.2 BTC in. on: December 14, 2016, 05:02:56 AM
If you do Start->Run->diskmgmt.msc, does the HDD show up?

I remember having a new PC build that would not detect my HDD due to some offhand BIOS change. Worth a shot to look here to see if the HDD is throwing some error that Windows can detect but is not showing you.
348  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][GRE] GreenCoin - A Tradeable Carbon Credit Ecosystem on: December 13, 2016, 05:41:38 PM
Sounds good, It does appear to be more stable now, good work. I do have a question though My staking is only about 0.02% of my coins at any given time. Is that normal?

the "spendable" are staking too, I was never entirely sure what the "staking" really meant... someone else may know??  Huh

Read through your source code or have someone dependable do so and report back your Staking information.

Some relevant sections for you, pulled from https://github.com/greencoin-dev/GreenCoinV2/blob/master/src/wallet.cpp can be found below. Repository could use a bit of cleaning, lot of references to other PoS style coins that resulted from the original fork. I'll do some pull requests later today if I have a few minutes.

Also in the header you mention the following method for unlocking your wallet for staking. May be easier to note they can just do Settings -> Unlock Wallet -> Type in password and leave the "For staking only" flag unchecked.
Now when you want to stake, open your wallet and leave it open. In the console type:
walletpassphrase <your real wallet password> <time> true
*time is in seconds. Just put in something big like 10000000.
*the final Boolean is for staking only (true/false), so when true, your wallet will be open and staking, but all of the other functions like sending coins are still locked. Ctrl-L clears the screen so your password isn't visible.

As always, good luck.

Code:
// Settings
int64_t nTransactionFee = MIN_TX_FEE;
int64_t nReserveBalance = 0;
int64_t nMinimumInputValue = 0;

static int64_t GetStakeCombineThreshold() { return 1000 * COIN; }
static int64_t GetStakeSplitThreshold() { return 2 * GetStakeCombineThreshold(); }

Code:
// ppcoin: total coins staked (non-spendable until maturity)
int64_t CWallet::GetStake() const
{
    int64_t nTotal = 0;
    LOCK2(cs_main, cs_wallet);
    for (map<uint256, CWalletTx>::const_iterator it = mapWallet.begin(); it != mapWallet.end(); ++it)
    {
        const CWalletTx* pcoin = &(*it).second;
        if (pcoin->IsCoinStake() && pcoin->GetBlocksToMaturity() > 0 && pcoin->GetDepthInMainChain() > 0)
            nTotal += CWallet::GetCredit(*pcoin);
    }
    return nTotal;
}

Code:
uint64_t CWallet::GetStakeWeight() const
{
    // Choose coins to use
    int64_t nBalance = GetBalance();

    if (nBalance <= nReserveBalance)
        return 0;

    vector<const CWalletTx*> vwtxPrev;

    set<pair<const CWalletTx*,unsigned int> > setCoins;
    int64_t nValueIn = 0;

    if (!SelectCoinsForStaking(nBalance - nReserveBalance, GetTime(), setCoins, nValueIn))
        return 0;

    if (setCoins.empty())
        return 0;

    uint64_t nWeight = 0;

    int64_t nCurrentTime = GetTime();
    CTxDB txdb("r");

    LOCK2(cs_main, cs_wallet);
    BOOST_FOREACH(PAIRTYPE(const CWalletTx*, unsigned int) pcoin, setCoins)
    {
        if (pcoin.first->GetDepthInMainChain() >= nStakeMinConfirmations)
            nWeight += pcoin.first->vout[pcoin.second].nValue;
    }

    return nWeight;
}
349  Economy / Computer hardware / Re: Selling S7 worlwide shipping on: December 13, 2016, 03:19:09 PM
Shipping from where? Price? Escrow?
350  Other / Archival / Re: Pictures of your mining rigs! on: December 13, 2016, 05:55:01 AM
[img snipped]

5x Antminer S7 4.73TH Batch20 (For sale) - [link snipped]
1x Antminer S9 11.85TH

S7 set at 445mhz
S9 Set at 550mhz

Hashing at around 26.70TH, Making around $18.50 a day.

 Grin

I'd be interested about people's thoughts on keeping miners/PSUs so close to styrofoam like this. Seems like a nightmare to me.
351  Economy / Services / Re: [PDF Wanted] Willing to pay 3$ worth BTC on: December 11, 2016, 04:36:40 PM
https://pt.scribd.com/doc/86817756/Partnership-De-Leon

BTC Addr: 13FwHHFGpPKUWXFoVKteeqDRTaDrc1mzLj

This is a free pdf preview.
352  Bitcoin / Project Development / Re: Bitcoin payment app for converting bitcoins to gift cards at various locations? on: December 10, 2016, 02:58:29 AM
This sounds very similar to SHIFT but in App form. I go and use a SHIFT card like any other debit/credit card, but it spends my BTC rather than traditional fiat. The vendor gets fiat, but I didn't have to worry about the conversion. Am I correct as to thinking this is what you are proposing?

If this is the case, are there any plans for you to make this an actual business as opposed to just an App? Trying to gauge if this is just a hobby/idea or an actual business venture.

Thanks!
353  Economy / Games and rounds / Re: ►►►Crypto-Games.net | Bitcoin and altcoin Casino | 5000 Satoshi Each Giveaway◄◄◄ on: December 09, 2016, 11:20:35 PM
Brunloc270
354  Economy / Computer hardware / Re: [WTS] Brand New Batch 2 Antminer R4 units on: December 08, 2016, 07:40:30 PM
Thank you so much for the help and suggestion.  See below for picture with my forum name (excuse the poor hand writing)

[linksnipped]

Bigger picture here.


355  Economy / Computer hardware / Re: [WTS] Brand New Batch 2 Antminer R4 units on: December 08, 2016, 07:21:58 PM
Here you go. May want to add your forum name to a piece of paper to include in the images. Good luck with sale!






356  Economy / Computer hardware / Re: [ WTS ] Dragon miner parts [ EU ] on: December 08, 2016, 02:56:01 PM
Thx ncsupanda .
I know now what i did wrong , i am a bitcointalk noob  😂

No problem, I think new users aren't allowed to post images or something similar. Can't remember now!

Good luck selling these, they are pretty much just a collectors item now. You'll be better off if you list a price and provide details on whether or not you want to use escrow (you should).
357  Economy / Computer hardware / Re: [ WTS ] Dragon miner parts [ EU ] on: December 07, 2016, 08:26:49 PM
Here you go, pictures below.







358  Economy / Computer hardware / Re: [WTS] Antminer S7 [US] Ship worldwide on: December 07, 2016, 01:00:49 PM
Only 1 i sold the other last week if serious i will PM pictures

Wouldn't it make more sense to just post them here? You've ignored questions about the price and whether or not you accept escrow.
359  Economy / Computer hardware / Re: Free Hosting for S7, S9, Avalon on: December 07, 2016, 02:15:21 AM
If you have hardware that is marginally profitable in other hosting facilities. I have around 500KW of capacity at very low electrical rates that I can make available so that you can earn an ROI on your hardware. To start with it I would like to open this up to miners with a minimum of 100KW of need. New to the forum not to mining!

You really should provide more information. For example you say "at very low electrical rates" and don't at all mention what kind of rates you'll be offering.

360  Economy / Computer hardware / Re: [WTS] Antminer S7 [US] Ship worldwide on: December 06, 2016, 04:20:38 PM
Price? Pictures? Escrow? Missing some of these crucial details.
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 62 63 64 65 66 67 68 ... 82 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!