We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c94aff commit 8a34aa8Copy full SHA for 8a34aa8
1 file changed
packages/pointers/src/evaluate.ts
@@ -179,13 +179,7 @@ async function evaluateKeccak256(
179
options: EvaluateOptions
180
): Promise<Data> {
181
const operands = await Promise.all(expression.$keccak256.map(
182
- async expression => {
183
- const unpaddedData = await evaluate(expression, options);
184
- const data = new Data(32);
185
- data.set(unpaddedData, 32 - unpaddedData.length);
186
-
187
- return data;
188
- }
+ async expression => await evaluate(expression, options)
189
));
190
191
// HACK concatenate via string representation
0 commit comments