Difference between revisions of "P2Pool code documentation"

From Bitcoin Wiki
Jump to: navigation, search
Line 1: Line 1:
 
Ignore this page for the minute. Is just a scratch pad for documenting the p2pool code.
 
Ignore this page for the minute. Is just a scratch pad for documenting the p2pool code.
 
Will tidy up once initial pass done.
 
Will tidy up once initial pass done.
 +
 +
{| border=1
 +
  |+ '''Files'''
 +
|-
 +
  !Files Name
 +
  !Description
 +
|-
 +
  |p2pool/main.py
 +
  |Main Startup and initialisation code
 +
|-
 +
  |p2pool/data.py
 +
  |P2Pool main data structures
 +
|-
 +
  |p2pool/util/pack.py
 +
  |Handling of over the wire data structures
 +
|}
 +
  
 
==p2pool/main.py==
 
==p2pool/main.py==
Line 15: Line 32:
 
Gets address to use for payout either from  file or bitcoind.
 
Gets address to use for payout either from  file or bitcoind.
 
Validates address and checks local bitcoind owns it.
 
Validates address and checks local bitcoind owns it.
 +
 +
==p2pool/data.py==
 +
Contains the main data structures used in p2pool.
 +
These are:
  
 
==p2pool/util/pack.py==
 
==p2pool/util/pack.py==

Revision as of 22:46, 11 June 2012

Ignore this page for the minute. Is just a scratch pad for documenting the p2pool code. Will tidy up once initial pass done.

Files
Files Name Description
p2pool/main.py Main Startup and initialisation code
p2pool/data.py P2Pool main data structures
p2pool/util/pack.py Handling of over the wire data structures


p2pool/main.py

Makes extensive use of twisted.defer. This allows it to "yield" to allow long running network code to complete. Read up on Python Generators and this before progressing!

Contains main startup code.

Tests connection to bitcoind. Prints hash of latest block to show bitcoind is up to date.

Tests connection to p2pool network.

Gets address to use for payout either from file or bitcoind. Validates address and checks local bitcoind owns it.

p2pool/data.py

Contains the main data structures used in p2pool. These are:

p2pool/util/pack.py

I think this handles all the binary data types used in the bitcoin protocol to send data over the network wire. These are nasty as very low level and many big endian/little endian complications. The p2pool network protocol uses these also. Do not think you need to really understand this unless making changes at this low level.