Skip to content

Commit

Permalink
drop: unused print
Browse files Browse the repository at this point in the history
  • Loading branch information
Himitsuko committed Feb 14, 2023
1 parent 53b0140 commit 21e185b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion depocket.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ func (c *Client) NewRequest(method, urlStr string, body interface{}) (*http.Requ
if err != nil {
return nil, err
}
fmt.Println(req.URL)
if body != nil {
req.Header.Set("Content-Type", "application/json")
}
Expand Down
1 change: 0 additions & 1 deletion pool_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ func TestPoolsService(t *testing.T) {
if err != nil {
t.Errorf("Pools.ListByAddresses returned error: %v", err)
}
fmt.Println(pools)

want := []*Pool{{Address: "0x0001", Type: "", PoolIndex: 0, ProjectCode: "", PoolComponents: []PoolComponent{{TokenAddress: "", Type: ""}}}}
if !cmp.Equal(pools, want) {
Expand Down

0 comments on commit 21e185b

Please sign in to comment.