aboutsummaryrefslogtreecommitdiff
path: root/auction.go
diff options
context:
space:
mode:
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
commit438b69e74b416918ef855c4a28d90779ea1e455c (patch)
tree7a5d02831cb63ebda981d05b6b9a826fa2bc7596 /auction.go
parent5733f293044bfe0d3210e7c4688172d53d54a7e0 (diff)
client->bidder
Diffstat (limited to 'auction.go')
-rw-r--r--auction.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/auction.go b/auction.go
index 50d6a2b..aeff7b3 100644
--- a/auction.go
+++ b/auction.go
@@ -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)
}