Skip to content
This repository was archived by the owner on May 16, 2019. It is now read-only.

Commit 2620045

Browse files
committed
Fix bug saving followers
1 parent c58528c commit 2620045

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

market/protocol.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ def rpc_follow(self, sender, proto, signature):
144144
if f.following != self.node.id:
145145
raise Exception('Following wrong node')
146146
f.signature = signature
147-
self.db.follow.set_follower(f)
147+
self.db.follow.set_follower(f.SerializeToString())
148148
proto = Profile(self.db).get(False)
149149
m = Metadata()
150150
m.name = proto.name

0 commit comments

Comments
 (0)