Skip to content

Commit

Permalink
removed print lines
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaBrigati committed Aug 17, 2018
1 parent d6294ee commit 66fbd17
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions wsapi/wsapiV2.go
Expand Up @@ -1051,7 +1051,6 @@ func HandleV2FactoidSubmit(state interfaces.IState, params interface{}) (interfa
}

func HandleV2FactoidBalance(state interfaces.IState, params interface{}) (interface{}, *primitives.JSONError) {
fmt.Println(params)
n := time.Now()
defer HandleV2APICallFABal.Observe(float64(time.Since(n).Nanoseconds()))

Expand Down Expand Up @@ -1331,7 +1330,6 @@ func HandleV2MultipleECBalances(state interfaces.IState, params interface{}) (in
func HandleV2MultipleFCTBalances(state interfaces.IState, params interface{}) (interface{}, *primitives.JSONError) {
x, ok := params.(map[string]interface{})
if ok != true {
fmt.Println(params)
return nil, NewCustomInvalidParamsError("ERROR! Invalid params passed in")
}

Expand Down

0 comments on commit 66fbd17

Please sign in to comment.