We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7c0694 commit 8d0afd4Copy full SHA for 8d0afd4
src/autostake/NetworkRunner.mjs
@@ -109,7 +109,7 @@ export default class NetworkRunner {
109
if(error.response?.status === 501){
110
return false
111
}else{
112
- throw new Error('Failed to load grants')
+ throw new Error(`Failed to load grants: ${error.response?.status}`)
113
}
114
115
if (addresses){
@@ -241,7 +241,7 @@ export default class NetworkRunner {
241
this.logger.info('Reward is too low, skipping', {
242
address,
243
amount: autostakeAmount,
244
- denom: this.network.denom,
+ denom: this.network.denom,
245
})
246
return
247
0 commit comments