Bitcoin Forum
May 11, 2024, 07:14:56 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: What's the problem with getting Bitcoin compliant with GAAP???  (Read 1887 times)
Elwar (OP)
Legendary
*
Offline Offline

Activity: 3598
Merit: 2386


Viva Ut Vivas


View Profile WWW
September 06, 2012, 06:17:35 PM
Last edit: October 26, 2012, 10:00:14 PM by Maged
 #1

Oooh...the hints are falling from the sky as things start to become clear.

It is in relation to this:
https://bitcointalk.org/index.php?topic=93502.msg1034137#msg1034137

First seastead company actually selling sea homes: Ocean Builders https://ocean.builders  Of course we accept bitcoin.
1715454896
Hero Member
*
Offline Offline

Posts: 1715454896

View Profile Personal Message (Offline)

Ignore
1715454896
Reply with quote  #2

1715454896
Report to moderator
1715454896
Hero Member
*
Offline Offline

Posts: 1715454896

View Profile Personal Message (Offline)

Ignore
1715454896
Reply with quote  #2

1715454896
Report to moderator
1715454896
Hero Member
*
Offline Offline

Posts: 1715454896

View Profile Personal Message (Offline)

Ignore
1715454896
Reply with quote  #2

1715454896
Report to moderator
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715454896
Hero Member
*
Offline Offline

Posts: 1715454896

View Profile Personal Message (Offline)

Ignore
1715454896
Reply with quote  #2

1715454896
Report to moderator
1715454896
Hero Member
*
Offline Offline

Posts: 1715454896

View Profile Personal Message (Offline)

Ignore
1715454896
Reply with quote  #2

1715454896
Report to moderator
1715454896
Hero Member
*
Offline Offline

Posts: 1715454896

View Profile Personal Message (Offline)

Ignore
1715454896
Reply with quote  #2

1715454896
Report to moderator
notme
Legendary
*
Offline Offline

Activity: 1904
Merit: 1002


View Profile
September 06, 2012, 07:41:00 PM
 #2

Oooh...the hints are falling from the sky as things start to become clear.

It is in relation to this:
https://bitcointalk.org/index.php?topic=93502.msg1034137#msg1034137

I don't see how that old thread is related.

https://www.bitcoin.org/bitcoin.pdf
While no idea is perfect, some ideas are useful.
Elwar (OP)
Legendary
*
Offline Offline

Activity: 3598
Merit: 2386


Viva Ut Vivas


View Profile WWW
September 06, 2012, 09:33:09 PM
 #3

Oooh...the hints are falling from the sky as things start to become clear.

It is in relation to this:
https://bitcointalk.org/index.php?topic=93502.msg1034137#msg1034137

I don't see how that old thread is related.

The key there is making Bitcoin comply with GAAP (Generally Accepted Accounting Principles).


First seastead company actually selling sea homes: Ocean Builders https://ocean.builders  Of course we accept bitcoin.
kjlimo
Legendary
*
Offline Offline

Activity: 2086
Merit: 1031


View Profile WWW
September 08, 2012, 12:32:11 PM
 #4

Oooh...the hints are falling from the sky as things start to become clear.

It is in relation to this:
https://bitcointalk.org/index.php?topic=93502.msg1034137#msg1034137

I don't see how that old thread is related.

The key there is making Bitcoin comply with GAAP (Generally Accepted Accounting Principles).



Based on my research, bitcoins are either commodities or foreign currecy.

Companies compliant with GAAP have had both commodities & foreign currency for years....

What's the problem with getting bitcoins compliantt with GAAP???

Coinbase for selling BTCs
Fold for spending BTCs
PM me with any questions on these sites/apps!  http://www.montybitcoin.com


or Vircurex for trading alt cryptocurrencies like DOGEs
CoinNinja for exploring the blockchain.
2112
Legendary
*
Offline Offline

Activity: 2128
Merit: 1068



View Profile
September 08, 2012, 02:48:43 PM
 #5

What's the problem with getting bitcoins compliantt with GAAP???
It requires extensive modification of the Satoshi client.

The upcoming v0.7 requires at least one modification less: "'blocktime' and 'timereceived' fields were added".

No matter what, the core development group is dead set against using any auditable database technology for storage, so the cost of modifications will continue to be very high.

Please comment, critique, criticize or ridicule BIP 2112: https://bitcointalk.org/index.php?topic=54382.0
Long-term mining prognosis: https://bitcointalk.org/index.php?topic=91101.0
jgarzik
Legendary
*
Offline Offline

Activity: 1596
Merit: 1091


View Profile
September 08, 2012, 04:00:52 PM
 #6

No matter what, the core development group is dead set against using any auditable database technology for storage, so the cost of modifications will continue to be very high.

What specific technology would you rather we use?


Jeff Garzik, Bloq CEO, former bitcoin core dev team; opinions are my own.
Visit bloq.com / metronome.io
Donations / tip jar: 1BrufViLKnSWtuWGkryPsKsxonV2NQ7Tcj
2112
Legendary
*
Offline Offline

Activity: 2128
Merit: 1068



View Profile
September 08, 2012, 04:41:05 PM
 #7

What specific technology would you rather we use?
Just clearly abstract the storage pool layers. There are two storage pools in the Satoshi client:

A) public: blockchain and peer addresses and some settings
B) private: wallet and some settings

Any, literally any well know traditional ACID database technology would be fine. Just create the free account at Oracle's OTN and download whatever suits your fancy. If you aren't a Microsoft hater then obtain access to MSDN/Bizspark/Dreamspark/Technet and use the database technologies available there.

The things that need deep and far reaching changes in the current implementation:

1) store blockchain in a database, not in a stdio/iostream file
2) blkindex is just an index, it doesn't need full transactional logging, the lightweight metadata-only logging is sufficient
3) blkindex is just an index, if there's something wrong with it,  provide a "reindex" operation, maybe as a side effect of "checkblocks/checklevel" operation
4) provide a way of obtaining sincere ledger / audit log for the transactions with multiple timestamps:
4a) true time when first seen on the p2p net
4b) true time when first seen in a block
4c) block time when seen in a block
4d) true time when some block caused a reorg and un-confirmed the transaction
4e) true time when other block reconfirmed the transaction
4f) block time when reconfirmed
4g) etc.. for each subsequent chain reorganization

The above is just a first step. The next step would be to actually integrate with any middleware:

5) get rid of "blocknotify" and support normal commit/rollback hooks supported by pretty much all distributed transactional technology, including the free Microsoft DTC.

In summary: the above isn't a "patch" or "git pull request" that can be submitted. This is a change of a mindset that would need to happen amongst the core development group. The GAAP isn't just a ruleset/certification that happens once and then you have it. It is an ongoing commitment.

Please comment, critique, criticize or ridicule BIP 2112: https://bitcointalk.org/index.php?topic=54382.0
Long-term mining prognosis: https://bitcointalk.org/index.php?topic=91101.0
2112
Legendary
*
Offline Offline

Activity: 2128
Merit: 1068



View Profile
September 08, 2012, 04:52:23 PM
 #8

What specific technology would you rather we use?
Here's the essentially the same answer as mine, but from somebody who tries to run Bitcoin business on top of Microsoft technologies:

https://bitcointalk.org/index.php?topic=101686.msg1113573#msg1113573

Just skip to point 3).

Please comment, critique, criticize or ridicule BIP 2112: https://bitcointalk.org/index.php?topic=54382.0
Long-term mining prognosis: https://bitcointalk.org/index.php?topic=91101.0
Portnoy
Legendary
*
Offline Offline

Activity: 2030
Merit: 1000

My money; Our Bitcoin.


View Profile
September 08, 2012, 04:54:52 PM
 #9

What specific technology would you rather we use?

...

4) provide a way of obtaining sincere ledger / audit log for the transactions with multiple timestamps:
4a) true time when first seen on the p2p net
4b) true time when first seen in a block
4c) block time when seen in a block
4d) true time when some block caused a reorg and un-confirmed the transaction
4e) true time when other block reconfirmed the transaction
4f) block time when reconfirmed
4g) etc.. for each subsequent chain reorganization

...

In summary: the above isn't a "patch" or "git pull request" that can be submitted. This is a change of a mindset that would need to happen amongst the core development group. The GAAP isn't just a ruleset/certification that happens once and then you have it. It is an ongoing commitment.

I like the sound of this.  I was very surprised when I first found out that this wasn't already possible in the reference client.  
galambo
Sr. Member
****
Offline Offline

Activity: 966
Merit: 311



View Profile
September 08, 2012, 05:02:47 PM
Last edit: September 09, 2012, 01:58:28 AM by galambo
 #10

Technically, if you want to use GAAP, Bitcoin issued 21 million coins back in 2009 and hasn't done anything since then. Wink
Gavin Andresen
Legendary
*
Offline Offline

Activity: 1652
Merit: 2216


Chief Scientist


View Profile WWW
September 08, 2012, 05:20:44 PM
 #11

In summary: the above isn't a "patch" or "git pull request" that can be submitted. This is a change of a mindset that would need to happen amongst the core development group. The GAAP isn't just a ruleset/certification that happens once and then you have it. It is an ongoing commitment.
When I hear that, I hear "you should stop doing what you're doing for a year or two or three and re-implement the whole thing."

Yeah... no.  As much as that would be a fun project, I don't think that is the job of the team working on the existing reference implementation. Keeping the existing software and network running as smoothly as possible is the highest priority.

Another very high priority is working through issues that arise as alternative implementations happen (see the current thread in the development section about non-DER-encoded signatures for a good example).  An alternative implementation that has the kind of accounting that you want is a great idea-- go do it, fund it, or convince somebody else to do it.  I think genjix' libbitcoin has the "store the blockchain in a database" that you want (although last I heard he was running into performance issues with that approach).

How often do you get the chance to work on a potentially world-changing project?
marcus_of_augustus
Legendary
*
Offline Offline

Activity: 3920
Merit: 2348


Eadem mutata resurgo


View Profile
September 08, 2012, 11:39:56 PM
 #12

What's the problem with getting bitcoins compliantt with GAAP???
It requires extensive modification of the Satoshi client.

The upcoming v0.7 requires at least one modification less: "'blocktime' and 'timereceived' fields were added".

No matter what, the core development group is dead set against using any auditable database technology for storage, so the cost of modifications will continue to be very high.

This is just nuts, top down, guys-in-suits type thinking.

Shoe horning some random accounting rules into a design spec (and implementation (which will never happen anyway)) for a network protocol is just wishful thinking ... pretty misguided also imho.

NB : GAAP rules were suspended by US Treasury Secretary Timothy Geithner (Hank Paulson) for the major banks at the height of the financial markets panic in 2008 and as far as I know they haven't been re-instated (specifically look at mark-to-model rules of off-balance sheet entities of JPMorgan for example) ... perhaps there are bigger problems with GAAP than "bitcoin doesn't comply" ?

benjamindees
Legendary
*
Offline Offline

Activity: 1330
Merit: 1000


View Profile
September 08, 2012, 11:51:19 PM
Last edit: September 12, 2012, 05:26:44 PM by benjamindees
 #13

Technically, if you want to use GAAP, Bitcoin issued 21 million coins back in 2009 and hasn't done anything since then. Wink

Exactly.  GAAP is irrelevant to Bitcoin.  Unlike some currencies, Bitcoin isn't a debt-based, fractional-reserve, leveraged pseudo-money that requires fine-grained, exact time-based tracking in order to prevent fraudulent third-order effects (like that ever even worked, anyways;  high-frequency Bitcoins here we come).

You don't need to pay taxes on Bitcoin transactions.  In fact, you shouldn't.  And you shouldn't try to use Bitcoin as a means of transferring value denominated in inherently flawed, poorly-accounted-for, debt-based, fractional-reserve, fraudulently-leveraged pseudo-monies, either.

That's pretty obviously what this request is about.  And it's not even remotely in any Bitcoin users' interest to help make that possible.

Civil Liberty Through Complex Mathematics
firefop
Sr. Member
****
Offline Offline

Activity: 420
Merit: 250


View Profile
October 29, 2012, 02:01:14 AM
 #14

Technically, if you want to use GAAP, Bitcoin issued 21 million coins back in 2009 and hasn't done anything since then. Wink

Exactly.  GAAP is irrelevant to Bitcoin.  Unlike some currencies, Bitcoin isn't a debt-based, fractional-reserve, leveraged pseudo-money that requires fine-grained, exact time-based tracking in order to prevent fraudulent third-order effects (like that ever even worked, anyways;  high-frequency Bitcoins here we come).

You don't need to pay taxes on Bitcoin transactions.  In fact, you shouldn't.  And you shouldn't try to use Bitcoin as a means of transferring value denominated in inherently flawed, poorly-accounted-for, debt-based, fractional-reserve, fraudulently-leveraged pseudo-monies, either.

That's pretty obviously what this request is about.  And it's not even remotely in any Bitcoin users' interest to help make that possible.

In addition to this opinion (which I entirely agree with btw), is that none of these issues should be addressed by the ref.client - store the blockchain however you'd like to, mine it to calculate timestamps on transactions you're interested in. The vast majority of users don't need this functionality and probably don't even know why they don't want it.


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