diff options
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) } |