Skip to content

Commit

Permalink
Fix ClaimManagerProxy client (#965)
Browse files Browse the repository at this point in the history
  • Loading branch information
raymondjacobson committed Oct 22, 2020
1 parent f7c8be7 commit e079f39
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion libs/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion libs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@audius/libs",
"version": "1.0.3",
"version": "1.0.4",
"description": "",
"main": "src/index.js",
"browser": {
Expand Down
2 changes: 1 addition & 1 deletion libs/src/services/contracts/ContractClient.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ class ContractClient {
retries: METHOD_CALL_MAX_RETRIES,
onRetry: (err, i) => {
if (err) {
console.log(`Retry error : ${err}`)
console.log(`Retry error for ${methodName} : ${err}`)
}
}
})
Expand Down
3 changes: 1 addition & 2 deletions libs/src/services/ethContracts/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,7 @@ class EthContracts {
this.ethWeb3Manager,
ClaimsManagerABI,
ClaimsManagerProxyKey,
this.getRegistryAddressForContract,
this.GovernanceClient
this.getRegistryAddressForContract
)

this.ServiceTypeManagerClient = new ServiceTypeManagerClient(
Expand Down

0 comments on commit e079f39

Please sign in to comment.