Skip to content

Commit

Permalink
Remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
vdrg committed Nov 19, 2024
1 parent d30b3f4 commit cb03f03
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 0 additions & 3 deletions packages/world/ts/node/render-solidity/worldgen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,6 @@ export async function worldgen({
config.codegen.systemLibrariesDirectory,
);

console.log(libraryOutDir);

return {
...system,
interfaceName,
Expand Down Expand Up @@ -112,7 +110,6 @@ export async function worldgen({
resourceId: resourceToHex({ type: "system", namespace: system.namespace, name: system.name }),
functions,
errors,
// we know it's defined because we generated the map from the world imports
imports: [systemImport, ...imports],
storeImportPath,
worldImportPath,
Expand Down
1 change: 1 addition & 0 deletions test/system-libraries/test/Libraries.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ contract LibrariesTest is MudTest {
uint256 value = 0xDEADBEEF;
aSystem.setValue(value);
assertEq(Value.get(), value);
assertEq(aSystem.getValue(), value);
}

function testCanCallSystemFromOtherSystem() public {
Expand Down

0 comments on commit cb03f03

Please sign in to comment.