aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--peer/peer.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/peer/peer.go b/peer/peer.go
index 440b10a..a11ca10 100644
--- a/peer/peer.go
+++ b/peer/peer.go
@@ -2,6 +2,7 @@ package peer
import (
"bytes"
+ "math/big"
"net"
)
@@ -24,6 +25,7 @@ type Peer struct {
Intersting bool // local
Optimistic bool
buf *bytes.Buffer
+ bitField *big.Int // see Bit, SetBit ans Bytes
}
func NewPeer(addr string) (Peer, error) {