Skip to content
This repository has been archived by the owner on Jul 13, 2021. It is now read-only.

Commit

Permalink
Basic framework
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxFangX committed Mar 12, 2016
1 parent 8613ba2 commit bb67cb6
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
10 changes: 10 additions & 0 deletions coinparty/peer.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
class State:

def __init__(self):
self.mixing_peers = set()
self.input_peers = set()


def start():

return State()
8 changes: 8 additions & 0 deletions coinparty/protocol.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
def c1_generate_addresses(state):
updated_state = None
return updated_state


def c2_compute_local_share_of_pub_key(state):
updated_state = None
return updated_state

0 comments on commit bb67cb6

Please sign in to comment.