You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Do you want to request a feature or report a bug?
Bug.
What is the current behavior?
Template strings are not interpolated in mapping.ts.
If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem.
I encountered this while reconstructing an IPFS CID from a 32 byte sha256 digest value.
// This doesn't evaluate hashDigest.toHexString().slice(2).// Instead it just returns the raw string.consthexStringConcatenated=`1220${hashDigest.toHexString().slice(2)}`// Workaround.consthexStringConcatenated=`1220`+hashDigest.toHexString().slice(2)log.info("New market with CID {}",[cid])
What is the expected behavior?
ES6 Template Strings are interpolated correctly.
The text was updated successfully, but these errors were encountered:
Do you want to request a feature or report a bug?
Bug.
What is the current behavior?
Template strings are not interpolated in
mapping.ts
.If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem.
I encountered this while reconstructing an IPFS CID from a 32 byte sha256 digest value.
What is the expected behavior?
ES6 Template Strings are interpolated correctly.
The text was updated successfully, but these errors were encountered: