Author

Topic: [ANN][FLO] A Worldwide Public Record | Alexandria | ETDB | Medici | 0.15 Segwit - page 106. (Read 516115 times)

newbie
Activity: 42
Merit: 0
Hi...
New Florin Coin pool

Proto Stratum
Reward system PPLNS
Pool fee 0.5%
Welcome http://flo.scoins.org/

we mine over 34000 coin and want much more....
full member
Activity: 182
Merit: 100
Price should keep rising now that the pool is fixed...
full member
Activity: 182
Merit: 100
Bumped up the bounty on the android wallet to 5x the original bounty of 1000.
full member
Activity: 182
Merit: 100
Bounty: 5000 Florincoin to the 1st dev to write a wallet for android and be approved by the Florincoin Dev Team:





sr. member
Activity: 437
Merit: 260
balance
full member
Activity: 182
Merit: 100
Introducing Florin (FLO) coin



Florin coin is a scrypt based coin with quick transaction processing.
Florin coin also introduces a useful new feature - transaction comments.


This needs to be updated the transaction size is now 4x what the original size was.
Florin has a 528 character limit
full member
Activity: 182
Merit: 100
512 charecter limit is alive! First coin to have this message size

http://florinexchange.com/explorer/messages/index.php
newbie
Activity: 19
Merit: 0
I was in the middle of creating a script to record account addresses periodically when I remembered this -
Quote
getaccountaddress will return the same address until coins are received on that address; once coins have been received, it will generate and return a new address.
Source: Bitcoin.it wiki

Essentially when you call getaccountaddress the client goes through all of your transactions, and if you've received coins at that address it creates a new one and associates it automatically. This is an example of Satoshi implementing automatic anonymizing tools into the client. Some would argue the "change address" always being generated as a new address is an example of this also.

This is solution. I check other currency (digitalcoin) and is the same. Sorry and thanks Smiley
full member
Activity: 196
Merit: 100
Anyone using flo.smalltimeminer.com pool, seems to be up and down daily, is there a more stable pool you can recommend?

sr. member
Activity: 437
Merit: 260
balance
Code:
FC3w9yWEovdJxyRVSX86SHkhivi3VV6MVZ - last
getaccountaddress "" FFtE876CBW75mJJ4VXhbwfdmsd154thwFi - today

Thanks for posting the info.

I was in the middle of creating a script to record account addresses periodically when I remembered this -
Quote
getaccountaddress will return the same address until coins are received on that address; once coins have been received, it will generate and return a new address.
Source: Bitcoin.it wiki

Essentially when you call getaccountaddress the client goes through all of your transactions, and if you've received coins at that address it creates a new one and associates it automatically. This is an example of Satoshi implementing automatic anonymizing tools into the client. Some would argue the "change address" always being generated as a new address is an example of this also.

Here's some more info from bitcoinrpc.cpp:
Code:
CBitcoinAddress GetAccountAddress(string strAccount, bool bForceNew=false) {
    CWalletDB walletdb(pwalletMain->strWalletFile);

    CAccount account;
    walletdb.ReadAccount(strAccount, account);

    bool bKeyUsed = false;

    // Check if the current key has been used
    if (account.vchPubKey.IsValid())
    {
        CScript scriptPubKey;
        scriptPubKey.SetDestination(account.vchPubKey.GetID());
        for (map::iterator it = pwalletMain->mapWallet.begin();
             it != pwalletMain->mapWallet.end() && account.vchPubKey.IsValid();
             ++it)
        {
            const CWalletTx& wtx = (*it).second;
            BOOST_FOREACH(const CTxOut& txout, wtx.vout)
                if (txout.scriptPubKey == scriptPubKey)
                    bKeyUsed = true;
        }
    }

    // Generate a new key
    if (!account.vchPubKey.IsValid() || bForceNew || bKeyUsed)
    {
        if (!pwalletMain->GetKeyFromPool(account.vchPubKey, false))
            throw JSONRPCError(-12, "Error: Keypool ran out, please call keypoolrefill first");

        pwalletMain->SetAddressBookName(account.vchPubKey.GetID(), strAccount);
        walletdb.WriteAccount(strAccount, account);
    }

    return CBitcoinAddress(account.vchPubKey.GetID());
}
full member
Activity: 182
Merit: 100
A required update for Florin is available for download.

Github source, Windows client, OP and web site updated.

This version 0.6.5.8 increases the maximum size of transaction comments to 528 bytes.

This increased limit will take effect at block 340,000 (about 3 weeks from now).


Um I think we are about 2100 mins away from this happening... hope everyone loaded....
newbie
Activity: 19
Merit: 0
Quote
Linux version 3.2.0-4-amd64 ([email protected]) (gcc version 4.6.3 (Debian 4.6.3-14) ) #1 SMP Debian 3.2.51-1
This is mining server, use only rpc.

Quote
florincoind getinfo
{
    "version" : 60508,
    "protocolversion" : 60001,
    "walletversion" : 60000,
    "balance" : 0.00000000,
    "blocks" : 337498,
    "connections" : 6,
    "proxy" : "",
    "difficulty" : 2.15984347,
    "testnet" : false,
    "keypoololdest" : 1385822070,
    "keypoolsize" : 101,
    "paytxfee" : 0.00000000,
    "mininput" : 0.00010000,
    "errors" : ""
}

Quote
FC3w9yWEovdJxyRVSX86SHkhivi3VV6MVZ - last
getaccountaddress "" FFtE876CBW75mJJ4VXhbwfdmsd154thwFi - today

Quote
florincoind listaccounts
{
    "" : 0.00000000
}

Quote
florincoind validateaddress FFtE876CBW75mJJ4VXhbwfdmsd154thwFi
{
    "isvalid" : true,
    "address" : "FFtE876CBW75mJJ4VXhbwfdmsd154thwFi",
    "ismine" : true,
    "isscript" : false,
    "pubkey" : "028c35cfcd23de1ab2e6aa8112350b46d0d4b9944fa728e64483b6e2280841af0f",
    "iscompressed" : true,
    "account" : ""
}

sr. member
Activity: 437
Merit: 260
balance
Hi, I have problem with wallet. Wallet sometimes (once a day) change account "" address. What is the cause of this?
Hey Sannin, thanks for the bug report. I've been using the wallet and accounts almost every day and haven't noticed a bug of this sort.

Can you please provide some info on your OS, version number, and some more detail on the issue? Also, please note that '' and "" are actually different accounts, so if you're accessing this command via an RPC interface (say, the PHP or C++ one) make sure the empty string is consistently the same on every RPC call.
newbie
Activity: 19
Merit: 0
Hi, I have problem with wallet. Wallet sometimes (once a day) change account "" address. What is the cause of this?
full member
Activity: 182
Merit: 100

Great news! Do you know of anyone that is developing alt coin wallets for Android?
full member
Activity: 182
Merit: 100
Always good to have a new pool!
newbie
Activity: 9
Merit: 0
New Mining Pool:

McKenzie Mining

http://flo.mckenziemining.net

Stratum only
Proportional Payouts per Block
Variable Difficulty per Worker
3% Pool Fee
full member
Activity: 182
Merit: 100
Strange coin.. Price is down in the toilet, tons of volume and still the diff is @ 6...with 500 m/h.. Something stinks.....
full member
Activity: 182
Merit: 100

I am proud to announce that you can now make donations to The Songs of Love Foundation using Florincoin! The Songs of Love Foundation is the first national 501(c)(3) charity to accept Florincoin donations. They accept Bitcoin and Litecoin as well.

The Songs of Love Foundation is a nonprofit organization dedicated to providing personalized songs for children and teens currently facing tough medical, physical or emotional challenges, free of charge. The foundation was also recently featured on 60 Minutes with Dan Rather.

http://www.songsoflove.org/florincoins/

Your Florin can go a long way to help a child in need.

--

Also, I fixed a bug on the block explorer where confirmations were not displaying correctly on the block inspector page.


Oh man this is kick ass.. Like minds think the same..
/salute
Jump to: