Remove prints
This commit is contained in:
parent
8221e1057c
commit
3c0fca8979
|
@ -102,7 +102,6 @@ class DummyAccountNode():
|
|||
:param dest_user: user to send crypto to
|
||||
:param amount: amount of crypto to send
|
||||
"""
|
||||
print("handle send " + self.node_id)
|
||||
if source_user in self.balances:
|
||||
self.balances[source_user] -= amount
|
||||
else:
|
||||
|
@ -119,7 +118,6 @@ class DummyAccountNode():
|
|||
:param dest_user: user to set crypto for
|
||||
:param amount: amount of crypto
|
||||
"""
|
||||
print("handle set " + self.node_id)
|
||||
self.balances[dest_user] = amount
|
||||
|
||||
def get_balance(self, user):
|
||||
|
|
Loading…
Reference in New Issue
Block a user