Don't use ruby naming 😬
This commit is contained in:
parent
eae143d33c
commit
7270c66f1e
@ -44,13 +44,13 @@ func (v *validator) validate(products ...string) {
|
||||
}()
|
||||
}
|
||||
|
||||
func (v *validator) emit_products(products ...string) {
|
||||
func (v *validator) emitProducts(products ...string) {
|
||||
for _, p := range products {
|
||||
go v.validate_product(p)
|
||||
}
|
||||
}
|
||||
|
||||
func (v *validator) validate_product(product string) {
|
||||
func (v *validator) validateProduct(product string) {
|
||||
v.logger.Info("Staring validation of %v", product)
|
||||
|
||||
results, err := v.db.TradeService().TradesAfterAll(product, 0)
|
||||
|
Reference in New Issue
Block a user