Skip to content

Commit 9b85195

Browse files
authored
Merge pull request #773 from eco-stake/fix-variable-interpolation
Fix variable interpolation
2 parents d7882b1 + a22485f commit 9b85195

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/autostake/index.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ export default function Autostake(mnemonic, opts) {
4949
})
5050
}
5151
if (success || skipped) {
52-
return health.success('Autostake finished for ${data.prettyName}')
52+
return health.success(`Autostake finished for ${data.prettyName}`)
5353
} else {
54-
return health.failed('Autostake failed for ${data.prettyName}')
54+
return health.failed(`Autostake failed for ${data.prettyName}`)
5555
}
5656
}
5757
})

0 commit comments

Comments
 (0)