Skip to content

Commit

Permalink
Remove unused function
Browse files Browse the repository at this point in the history
  • Loading branch information
iknite committed Feb 19, 2019
1 parent b8033c5 commit df4845c
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ package client
import (
"bytes"
"crypto/tls"
"encoding/binary"
"encoding/json"
"fmt"
"io/ioutil"
Expand Down Expand Up @@ -210,12 +209,6 @@ func (c HTTPClient) Incremental(start, end uint64) (*protocol.IncrementalRespons
return response, nil
}

func uint2bytes(i uint64) []byte {
bytes := make([]byte, 8)
binary.LittleEndian.PutUint64(bytes, i)
return bytes
}

// Verify will compute the Proof given in Membership and the snapshot from the
// add and returns a proof of existence.
func (c HTTPClient) Verify(
Expand Down

0 comments on commit df4845c

Please sign in to comment.