We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cdbf801 commit 2a40064Copy full SHA for 2a40064
tf_encrypted/protocol/pond.py
@@ -61,12 +61,11 @@ def __init__(
61
tensor_factory: Optional[AbstractFactory] = None,
62
fixedpoint_config: Optional[FixedpointConfig] = None,
63
) -> None:
64
-
65
self.server_0 = server_0 or get_config().get_player("server0")
66
self.server_1 = server_1 or get_config().get_player("server1")
67
- self.crypto_producer = crypto_producer or get_config().get_player(
68
- "crypto-producer"
69
- )
+ crypto_producer = crypto_producer or get_config().get_player("server2")
+ crypto_producer = crypto_producer or get_config().get_player("crypto-producer")
+ self.crypto_producer = crypto_producer
70
71
if tensor_factory is None:
72
if tensorflow_supports_int64():
0 commit comments