Bitcoin Forum
April 27, 2024, 12:18:56 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
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 69 70 71 ... 126 »
  Print  
Author Topic: [ANN][FLO] A Worldwide Public Record | Alexandria | ETDB | Medici | 0.15 Segwit  (Read 515901 times)
Sannin
Newbie
*
Offline Offline

Activity: 19
Merit: 0


View Profile
December 19, 2013, 06:32:49 PM
 #401

Hi, I have problem with wallet. Wallet sometimes (once a day) change account "" address. What is the cause of this?
1714177136
Hero Member
*
Offline Offline

Posts: 1714177136

View Profile Personal Message (Offline)

Ignore
1714177136
Reply with quote  #2

1714177136
Report to moderator
1714177136
Hero Member
*
Offline Offline

Posts: 1714177136

View Profile Personal Message (Offline)

Ignore
1714177136
Reply with quote  #2

1714177136
Report to moderator
"With e-currency based on cryptographic proof, without the need to trust a third party middleman, money can be secure and transactions effortless." -- Satoshi
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714177136
Hero Member
*
Offline Offline

Posts: 1714177136

View Profile Personal Message (Offline)

Ignore
1714177136
Reply with quote  #2

1714177136
Report to moderator
1714177136
Hero Member
*
Offline Offline

Posts: 1714177136

View Profile Personal Message (Offline)

Ignore
1714177136
Reply with quote  #2

1714177136
Report to moderator
1714177136
Hero Member
*
Offline Offline

Posts: 1714177136

View Profile Personal Message (Offline)

Ignore
1714177136
Reply with quote  #2

1714177136
Report to moderator
metacoin
Sr. Member
****
Offline Offline

Activity: 437
Merit: 260


balance


View Profile WWW
December 19, 2013, 06:56:58 PM
 #402

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.

pin.org
Sannin
Newbie
*
Offline Offline

Activity: 19
Merit: 0


View Profile
December 19, 2013, 08:51:21 PM
 #403

Quote
Linux version 3.2.0-4-amd64 (debian-kernel@lists.debian.org) (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" : ""
}

stink
Full Member
***
Offline Offline

Activity: 182
Merit: 100



View Profile
December 20, 2013, 12:41:35 AM
 #404

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....

BTC address: 1P4iEGR8oBjr27k3NyzLfi8wraGajMunLg
Cryptsy trade key: 48007eb091500413be905854f1c5d5a42bd9a94b
metacoin
Sr. Member
****
Offline Offline

Activity: 437
Merit: 260


balance


View Profile WWW
December 20, 2013, 08:55:15 AM
 #405

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<uint256, CWalletTx>::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());
}

pin.org
techstorm2
Full Member
***
Offline Offline

Activity: 196
Merit: 100


View Profile
December 20, 2013, 10:36:37 AM
 #406

Anyone using flo.smalltimeminer.com pool, seems to be up and down daily, is there a more stable pool you can recommend?


Dime 7Q3cZtyJemmE8pJsrYgX24mHnkqZX6M6hP
BTC 18vbvovBeM5ZTZqR5ZWAy75EXE7qTNipuo
Mooncoin 2QgyivUMa7Zun6oPdxeE1yry1aNp5hqrDb
LTC Lg3UYGCAe3Tb146PiMqeGNLR7bnjdM447d
Doge DPd1XejW8TabJu5gfjyKnuQYQ9Vzw1anXN
Sannin
Newbie
*
Offline Offline

Activity: 19
Merit: 0


View Profile
December 20, 2013, 11:59:26 AM
 #407

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
stink
Full Member
***
Offline Offline

Activity: 182
Merit: 100



View Profile
December 20, 2013, 03:20:34 PM
 #408

512 charecter limit is alive! First coin to have this message size

http://florinexchange.com/explorer/messages/index.php

BTC address: 1P4iEGR8oBjr27k3NyzLfi8wraGajMunLg
Cryptsy trade key: 48007eb091500413be905854f1c5d5a42bd9a94b
stink
Full Member
***
Offline Offline

Activity: 182
Merit: 100



View Profile
December 20, 2013, 03:21:52 PM
Last edit: December 21, 2013, 11:09:33 PM by stink
 #409

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

BTC address: 1P4iEGR8oBjr27k3NyzLfi8wraGajMunLg
Cryptsy trade key: 48007eb091500413be905854f1c5d5a42bd9a94b
metacoin
Sr. Member
****
Offline Offline

Activity: 437
Merit: 260


balance


View Profile WWW
December 20, 2013, 08:42:22 PM
 #410



The new tx-comment limit is 528 characters. Everyone please download the new client.

Windows: http://www.florincoin.org/florincoin-winqt-065r8.zip
Mac: https://www.dropbox.com/s/rrwo9cbkg3h51bl/Florincoin-Qt-0.6.5.8-Mac.zip

Source Code: https://github.com/pascalguru/florincoin

pin.org
stink
Full Member
***
Offline Offline

Activity: 182
Merit: 100



View Profile
December 20, 2013, 09:51:31 PM
Last edit: December 21, 2013, 10:47:14 PM by stink
 #411

Bounty: 5000 Florincoin to the 1st dev to write a wallet for android and be approved by the Florincoin Dev Team:






BTC address: 1P4iEGR8oBjr27k3NyzLfi8wraGajMunLg
Cryptsy trade key: 48007eb091500413be905854f1c5d5a42bd9a94b
stink
Full Member
***
Offline Offline

Activity: 182
Merit: 100



View Profile
December 21, 2013, 10:47:49 PM
 #412

Bumped up the bounty on the android wallet to 5x the original bounty of 1000.

BTC address: 1P4iEGR8oBjr27k3NyzLfi8wraGajMunLg
Cryptsy trade key: 48007eb091500413be905854f1c5d5a42bd9a94b
stink
Full Member
***
Offline Offline

Activity: 182
Merit: 100



View Profile
December 22, 2013, 09:24:40 PM
 #413

Price should keep rising now that the pool is fixed...

BTC address: 1P4iEGR8oBjr27k3NyzLfi8wraGajMunLg
Cryptsy trade key: 48007eb091500413be905854f1c5d5a42bd9a94b
slaveofmoney
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
December 23, 2013, 08:39:08 AM
 #414

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....
skyangel (OP)
Sr. Member
****
Offline Offline

Activity: 301
Merit: 260


FLO dev


View Profile
December 23, 2013, 01:22:17 PM
 #415

Github source updated with checkpoint.

First post and web site updated with new links.

stink
Full Member
***
Offline Offline

Activity: 182
Merit: 100



View Profile
December 23, 2013, 02:04:03 PM
 #416

Github source updated with checkpoint.

First post and web site updated with new links.


first posts still reflects incorrect message limit should be 528

BTC address: 1P4iEGR8oBjr27k3NyzLfi8wraGajMunLg
Cryptsy trade key: 48007eb091500413be905854f1c5d5a42bd9a94b
stink
Full Member
***
Offline Offline

Activity: 182
Merit: 100



View Profile
December 23, 2013, 06:49:15 PM
 #417

https://github.com/BitcoinMafia/twittercoin

BTC address: 1P4iEGR8oBjr27k3NyzLfi8wraGajMunLg
Cryptsy trade key: 48007eb091500413be905854f1c5d5a42bd9a94b
Symon
Newbie
*
Offline Offline

Activity: 24
Merit: 0


View Profile
December 24, 2013, 12:07:07 AM
 #418

Hello,

When i registered on the pool, i used a password generator and it also generated the PIN... but didn't saved it :/

So i have no idee what my PIN is Sad

Can you reset it ? My account's name is the same than here : Symon.

I can send you a mail from the registered mail address if needed !

Thanks Wink
slaveofmoney
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
December 24, 2013, 02:43:16 AM
 #419

Hello,

When i registered on the pool, i used a password generator and it also generated the PIN... but didn't saved it :/

So i have no idee what my PIN is Sad

Can you reset it ? My account's name is the same than here : Symon.

I can send you a mail from the registered mail address if needed !

Thanks Wink

for who your post?
Jbanna
Full Member
***
Offline Offline

Activity: 151
Merit: 100



View Profile
December 24, 2013, 05:18:39 AM
 #420

looking to buy 1 Million FLORIN (or more!!) at 25% over market-price. anybody interested? we can find a trusted member to escrow for us.
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 69 70 71 ... 126 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!