fix nil pointer dereference
This commit is contained in:
		@@ -63,7 +63,7 @@ func (p *Provider) GetBalances() ([]int, []string, error) {
 | 
				
			|||||||
		}(goErr)
 | 
							}(goErr)
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	wg.Wait()
 | 
						wg.Wait()
 | 
				
			||||||
	if *goErr != nil {
 | 
						if goErr != nil {
 | 
				
			||||||
		return nil, nil, *goErr
 | 
							return nil, nil, *goErr
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user