remove printf

This commit is contained in:
Jeff Wentworth 2019-11-12 20:41:54 +09:00
parent dc7cd7e4b5
commit 3c7aa59dc7

View file

@ -135,7 +135,6 @@ func parseTopics(out interface{}, fields abi.Arguments, topics []common.Hash) er
case reflect.Int8: case reflect.Int8:
num := new(big.Int).SetBytes(topics[0][:]) num := new(big.Int).SetBytes(topics[0][:])
field.Set(reflect.ValueOf(int8(num.Int64()))) field.Set(reflect.ValueOf(int8(num.Int64())))
fmt.Printf("parseTopics: num '%v', topics[0] '%v', field '%v'\n", num, topics[0], field)
case reflect.Int16: case reflect.Int16:
num := new(big.Int).SetBytes(topics[0][:]) num := new(big.Int).SetBytes(topics[0][:])