Skip to content

Commit

Permalink
Merge pull request #773 from eco-stake/fix-variable-interpolation
Browse files Browse the repository at this point in the history
Fix variable interpolation
  • Loading branch information
tombeynon committed Apr 8, 2024
2 parents d7882b1 + a22485f commit 9b85195
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/autostake/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ export default function Autostake(mnemonic, opts) {
})
}
if (success || skipped) {
return health.success('Autostake finished for ${data.prettyName}')
return health.success(`Autostake finished for ${data.prettyName}`)
} else {
return health.failed('Autostake failed for ${data.prettyName}')
return health.failed(`Autostake failed for ${data.prettyName}`)
}
}
})
Expand Down

0 comments on commit 9b85195

Please sign in to comment.