Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
benesjan committed Feb 2, 2025
1 parent 72ef3db commit 0bc9c0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yarn-project/types/src/abi/contract_artifact.ts
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ function getStorageLayout(input: NoirCompiledContract) {
const name = field.name;
const slot = field.value.fields[0].value as IntegerValue;
acc[name] = {
slot: slot.value,
slot: `0x${slot.value}`,
};
return acc;
}, {});
Expand Down

0 comments on commit 0bc9c0c

Please sign in to comment.