Bitcoin Forum
May 05, 2024, 12:40:45 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: 1 2 [All]
  Print  
Author Topic: Looking for testers  (Read 4596 times)
tombc (OP)
Newbie
*
Offline Offline

Activity: 25
Merit: 0


View Profile WWW
April 19, 2011, 04:12:42 PM
 #1

i'm going to release (under gpl) beta version of a client in few days

windows alpha version: http://www.bitdollar.org/bitdollar.zip

it should be stable enought but dont put many coins on it
There are several different types of Bitcoin clients. The most secure are full nodes like Bitcoin Core, but full nodes are more resource-heavy, and they must do a lengthy initial syncing process. As a result, lightweight clients with somewhat less security are commonly used.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
tcatm
Sr. Member
****
Offline Offline

Activity: 337
Merit: 265


View Profile
April 19, 2011, 05:09:34 PM
 #2

Does it support testnet?
xf2_org
Member
**
Offline Offline

Activity: 98
Merit: 13


View Profile
April 19, 2011, 05:15:37 PM
 #3


Will users trust a client from an unknown person, lacking source code?

jimbo77
Member
**
Offline Offline

Activity: 224
Merit: 10


View Profile
April 19, 2011, 05:17:23 PM
 #4

What are the features?
tombc (OP)
Newbie
*
Offline Offline

Activity: 25
Merit: 0


View Profile WWW
April 19, 2011, 05:37:49 PM
 #5

it's doesn't support testnet but could easily

source code out soon (dependencies: qt, openssl), was just throwing a fast release, it can still be tested in VM

features are mainly:
-flexible wallet management
-choosing inputs and change addresses when sending money
-a small block explorer

main window view still need some improvements

i forgot to point to not try to solve block with it, it's works but it's not optimized at all
(it is implemented for an easier custom miners integration)
tcatm
Sr. Member
****
Offline Offline

Activity: 337
Merit: 265


View Profile
April 19, 2011, 05:39:40 PM
 #6

well, if you want testers, add testnet support. That's what testnet is for.
jimbo77
Member
**
Offline Offline

Activity: 224
Merit: 10


View Profile
April 19, 2011, 05:42:49 PM
 #7

it's doesn't support testnet but could easily

source code out soon (dependencies: qt, openssl), was just throwing a fast release, it can still be tested in VM

features are mainly:
-flexible wallet management
-choosing inputs and change addresses when sending money
-a small block explorer

main window view still need some improvements

i forgot to point to not try to solve block with it, it's works but it's not optimized at all
(it is implemented for an easier custom miners integration)


Does it support wallet encryption or just exporting/importing wallet
tombc (OP)
Newbie
*
Offline Offline

Activity: 25
Merit: 0


View Profile WWW
April 19, 2011, 05:54:06 PM
 #8

yes, there is a "set password" button in the wallet manager

wallet file format is very different from bitcoin format, the only way to move
btc between bc wallet and bd wallet is to send money
jimbo77
Member
**
Offline Offline

Activity: 224
Merit: 10


View Profile
April 19, 2011, 06:00:57 PM
 #9

Is this https://en.bitcoin.it/wiki/QBitcoin? or totally different development?
tombc (OP)
Newbie
*
Offline Offline

Activity: 25
Merit: 0


View Profile WWW
April 19, 2011, 06:11:47 PM
 #10

no, something different, i prefered to rewrite all from scratch
Mike Hearn
Legendary
*
Offline Offline

Activity: 1526
Merit: 1129


View Profile
April 19, 2011, 06:59:21 PM
 #11

Wow, that's a huge amount of work. Does it have many unit tests?
tombc (OP)
Newbie
*
Offline Offline

Activity: 25
Merit: 0


View Profile WWW
April 19, 2011, 10:25:20 PM
 #12

i have release source code, http://www.bitdollar.org/forum/viewtopic.php?f=3&t=2
Mike Hearn
Legendary
*
Offline Offline

Activity: 1526
Merit: 1129


View Profile
April 20, 2011, 05:56:26 PM
 #13

Very cool indeed. Is there a todo list somewhere? I see that scripts are not handled. Are you planning a full node or a client-only node?
tombc (OP)
Newbie
*
Offline Offline

Activity: 25
Merit: 0


View Profile WWW
April 20, 2011, 06:38:37 PM
 #14

i think script support is the only thing missing to be fully compatible with bitcoin client
i'll add it (that was my last thing "todo") but that kind of scripting is quite dangerous

i've noticed two small bugs:
-when reducing program in systray, no icon appears (./res folder is missing, i'll add ressource into the program directly)
-downloading blocks at first launch can be stopped before the last block, need to disconnect/reconnect

my goal is to manage bitcoin protocol exactly like bitcoin client
Mike Hearn
Legendary
*
Offline Offline

Activity: 1526
Merit: 1129


View Profile
April 20, 2011, 07:02:49 PM
 #15

I'd be really careful with that. At the very least try to avoid exposing mining support until you've really proven that you're following all the rules of the network (as laid out on the wiki and from the official code). Supporting scripts is not enough. Think about nLockTime, the SIGHASH flags and so on.

Really, a test suite proving you behave identically to the real client would be ideal. Satoshi was historically against re-implementations because the entire network has to be exactly synchronized and even very minor deviations can cause big problems. I don't think reimplementations can be avoided, but if you do it, be aware that you're signing up for a giant can of worms.

A blackbox test suite that can prove the correctness of both your code and Satoshis (and any future implementation) would be excellent.
xf2_org
Member
**
Offline Offline

Activity: 98
Merit: 13


View Profile
April 20, 2011, 08:42:36 PM
 #16


Seconded what [mike] says.  For example, a client must properly handle events such a transaction being confirmed, then becomes unconfirmed due to a block chain reorg, then becomes confirmed again in a different block.

This is why I advise "normal" users to avoid all clients except mainline (bitcoin/bitcoin.git) at the present time.

No alternate client gets all these details right AFAIK, and to protect your users' bitcoins, you must.

tombc (OP)
Newbie
*
Offline Offline

Activity: 25
Merit: 0


View Profile WWW
April 21, 2011, 03:50:36 AM
 #17

rollbacks are managed

sighash is not used but it could be, i'll support it
nlocktime is ignored in bitcoin too isn't it?

i've reuploaded packages for small fixes (systray, sendmoney window size and tx are now sent correctly on the network)
Mike Hearn
Legendary
*
Offline Offline

Activity: 1526
Merit: 1129


View Profile
April 21, 2011, 05:18:52 AM
 #18

Yes, but the code could be reactivated at some point. Your client would then not understand blocks/txns using those features and cause chain forks.

I guess my point is not "here's some missing features". It's more, how can your code build confidence that it isn't going to cause spurious (or permanent!) chain forks if it becomes popular? BitCoin itself has no test suite which is unfortunate, but its the first implementation so its behavior essentially defines the protocol. Your code has no such advantage.
marcus_of_augustus
Legendary
*
Offline Offline

Activity: 3920
Merit: 2348


Eadem mutata resurgo


View Profile
April 21, 2011, 07:06:35 AM
 #19


How does it deal with deleted copies of unencrypted wallet left on the disk after an encryption? e.g. does it shred or otherwise wipe the unencrypted wallet.dat files?

tombc (OP)
Newbie
*
Offline Offline

Activity: 25
Merit: 0


View Profile WWW
April 21, 2011, 12:58:29 PM
 #20

wallet is always wiped and always encrypted on the disk using a default pwd "" (if no pwd set)

i'll be aware of futur bitcoin changes, it can still be used safely as simple client (well except it's a beta for the moment but it's not the same problem)
i think bd is more restrictive than bc, it should not accept a tx that is rejected by bc
so i could tests it with bitcoin client and check if it is accepted
theymos
Administrator
Legendary
*
Offline Offline

Activity: 5194
Merit: 12972


View Profile
April 21, 2011, 06:02:20 PM
 #21

wallet is always wiped and always encrypted on the disk using a default pwd "" (if no pwd set)

i'll be aware of futur bitcoin changes, it can still be used safely as simple client (well except it's a beta for the moment but it's not the same problem)
i think bd is more restrictive than bc, it should not accept a tx that is rejected by bc
so i could tests it with bitcoin client and check if it is accepted

If you ever reject a block that Bitcoin accepts, then you'll permanently end up on a different chain.

1NXYoJ5xU91Jp83XfVMHwwTUyZFK64BoAD
tombc (OP)
Newbie
*
Offline Offline

Activity: 25
Merit: 0


View Profile WWW
April 21, 2011, 06:56:31 PM
 #22

minor differences would be fixed quickly, and chains automatically merged
one good point is that it could detect irregular tx that try to use an exploit in bitcoin client

but that problem is only for users that try to solve blocks, and solving blocks with bd is really not effecient
at all
toddbethell
Jr. Member
*
Offline Offline

Activity: 49
Merit: 1



View Profile WWW
April 22, 2011, 11:52:36 PM
 #23

 Angry
This Bitdollar wallet never received the 5BTC sent to it from MyBitcoin.
It seemed to install ok, connect, download blocks… 24hrs later, still no coins.
Computer did a windows restart then application and wallet was gone.
Reinstalled was reinstalled but a hard drive search of the previous wallet turned up nothing.
 Huh
A bigger question is: how can I get my bitcoins back if they are sent to non-existent or corrupted wallet?
bitlotto
Hero Member
*****
Offline Offline

Activity: 672
Merit: 500


BitLotto - best odds + best payouts + cheat-proof


View Profile WWW
April 23, 2011, 12:34:23 AM
 #24

Angry
This Bitdollar wallet never received the 5BTC sent to it from MyBitcoin.
It seemed to install ok, connect, download blocks… 24hrs later, still no coins.
Computer did a windows restart then application and wallet was gone.
Reinstalled was reinstalled but a hard drive search of the previous wallet turned up nothing.
 Huh
A bigger question is: how can I get my bitcoins back if they are sent to non-existent or corrupted wallet?


If the wallet is gone forever so are the coins....sorry.

*Next Draw Feb 1*  BitLotto: monthly raffle (0.25 BTC per ticket) Completely transparent and impossible to manipulate who wins. TOR
TOR2WEB
Donations to: 1JQdiQsjhV2uJ4Y8HFtdqteJsZhv835a8J are appreciated.
tombc (OP)
Newbie
*
Offline Offline

Activity: 25
Merit: 0


View Profile WWW
April 23, 2011, 01:43:25 AM
 #25

as said without wallet, coins are lost
if wallet file is corrupted, i can take a look into it to move the address contained into another wallet

a backup of the wallet can be done safely but new address created won't be in the backup wallet
that's why bd give the choice to the user to create a new address for the change or not, creating new
address make your transaction less traceable, but force user to rebackup his wallet

bd creates a temp backup of the wallet before updating it, if computer restart
when the program is writing into the wallet, the temp backup file should be here
the file name is something like : youwalletfilename.XXXXX.bak (where XXXX are numbers)

but if both application and wallet was gone, maybe an external program erased them

do you have the destination address that should have received the btc? i will check the transaction in the block
if you rescue your wallet but coins are not still received, i'll take a look into it
wumpus
Hero Member
*****
Offline Offline

Activity: 812
Merit: 1022

No Maps for These Territories


View Profile
May 07, 2011, 09:53:48 PM
 #26

Impressive work.

BTW: Your beta version builds fine in Linux after a trivial change to bitdollar.pro.  I haven't tested it yet on the network, though.


Bitcoin Core developer [PGP] Warning: For most, coin loss is a larger risk than coin theft. A disk can die any time. Regularly back up your wallet through FileBackup Wallet to an external storage or the (encrypted!) cloud. Use a separate offline wallet for storing larger amounts.
jrutila
Newbie
*
Offline Offline

Activity: 1
Merit: 0


View Profile
May 11, 2011, 07:12:39 PM
 #27

I am also trying this on linux. Actually the trivial change to the pro file is
Code:
LIBS += -L/usr/lib/libssl.a

You should really set up a git repository for this project so that others can contribute.
tombc (OP)
Newbie
*
Offline Offline

Activity: 25
Merit: 0


View Profile WWW
May 21, 2011, 04:16:47 PM
 #28

due to lack of interest for this implementation i haven't worked a lot on it
i have added sighash and script support, but scripts are not yet handled exactly like bitcoin does
since i used my own big integer implementation, instead of the openssl big integer (minor issue)
this is only a problem for those who would like to solve blocks, but none tried afaik

no problem noticed using b$ as simple client, except the main view which display too much informations on transactions

for the moment i'm focusing on the bitdollar protocol (very different by design), but if i feel
more interest in the bitcoin implementation, i'll rework it
darbsllim
Sr. Member
****
Offline Offline

Activity: 297
Merit: 251


Founder, Filmmaker, Fun Guy


View Profile
May 23, 2011, 09:37:09 AM
 #29

If the wallet is gone forever so are the coins....sorry.

Can the coins really be gone forever?

Brad Mills,
Investor - Former miner - Former Bitcoin Business Owner - Survivor of the Great Bitcoin Crashes of 2011 and 2012, the MtGox Heist of 2014 & the 2017 crypto bubble.
Bitrated user: bradmillscan.
marcus_of_augustus
Legendary
*
Offline Offline

Activity: 3920
Merit: 2348


Eadem mutata resurgo


View Profile
May 23, 2011, 09:45:46 AM
 #30

If the wallet is gone forever so are the coins....sorry.

Can the coins really be gone forever?

Technically, the coins are still there in the database and if you knew the public address you could look them up on the block explorer.

But it would be like staring at the blue fairy through 9 feet of ice ... you could never spend them because the private key that is needed to transfer them is what has actually been lost, deleted or otherwise rendered inaccessible by your wallet.dat file mishap.

darbsllim
Sr. Member
****
Offline Offline

Activity: 297
Merit: 251


Founder, Filmmaker, Fun Guy


View Profile
May 25, 2011, 09:22:04 AM
 #31

So if someone with a lot of bitcoin were to delete all those accounts, could new bitcoins be created, or would there be less that many bitcoins in the system forever?

Brad Mills,
Investor - Former miner - Former Bitcoin Business Owner - Survivor of the Great Bitcoin Crashes of 2011 and 2012, the MtGox Heist of 2014 & the 2017 crypto bubble.
Bitrated user: bradmillscan.
marcus_of_augustus
Legendary
*
Offline Offline

Activity: 3920
Merit: 2348


Eadem mutata resurgo


View Profile
May 25, 2011, 09:38:40 AM
 #32

So if someone with a lot of bitcoin were to delete all those accounts, could new bitcoins be created, or would there be less that many bitcoins in the system forever?


... the second option.

They can not really "delete those accounts" but more that they could delete the private keys that give them access to those accounts, for all intents and purposes those coins are locked out of circulation without the private keys.

Pages: 1 2 [All]
  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!