diff options
author | Özgür Kesim <oec@codeblau.de> | 2024-04-07 13:21:53 +0200 |
---|---|---|
committer | Özgür Kesim <oec@codeblau.de> | 2024-04-07 13:21:53 +0200 |
commit | 438b69e74b416918ef855c4a28d90779ea1e455c (patch) | |
tree | 7a5d02831cb63ebda981d05b6b9a826fa2bc7596 /auction.go | |
parent | 5733f293044bfe0d3210e7c4688172d53d54a7e0 (diff) |
client->bidder
Diffstat (limited to 'auction.go')
-rw-r--r-- | auction.go | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -36,9 +36,7 @@ type SignedDesciption struct { } // Bidder is the interface that the Auction engine uses to communicate -// with an bidder implementation type Bidder interface { Result() - Broadcast() - Unicast() + Send(msg []byte, sig []byte) } |