Skip to content

Commit

Permalink
fixing linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
b00f committed Jan 31, 2024
1 parent 979ba9e commit 215874b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions client/client_mgr.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ func (cm *Mgr) AddClient(c IClient) {
cm.clients = append(cm.clients, c)
}

// NOTE: local client is always the first client
// NOTE: local client is always the first client.
func (cm *Mgr) getLocalClient() IClient {
return cm.clients[0]
}
Expand All @@ -41,7 +41,6 @@ func (cm *Mgr) GetBlockchainInfo() (*pactus.GetBlockchainInfoResponse, error) {
return nil, err
}
return info, nil

}

func (cm *Mgr) GetBlockchainHeight() (uint32, error) {
Expand Down

0 comments on commit 215874b

Please sign in to comment.