Skip to content

Commit

Permalink
Fix Warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
kuzdogan committed Nov 21, 2024
1 parent f43018e commit ffaedaa
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 5 deletions.
4 changes: 3 additions & 1 deletion src/bytecodes/dataSection.js

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion src/bytecodes/example1.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion src/bytecodes/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ import subcontainers from "./subcontainers";
import simpleCreate from "./simpleCreate";
import dataSection from "./dataSection";

export default { example1, subcontainers, simpleCreate, dataSection };
const bytecodes = { example1, subcontainers, simpleCreate, dataSection };
export default bytecodes;
4 changes: 3 additions & 1 deletion src/bytecodes/simpleCreate.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@ const name = "Simple Create";
const bytecode =
"0xef00010100040200010011030001003204000000008000046000600060006000ec0061201560015500ef000101000402000100060300010014040000000080000260006000ee00ef00010100040200010001040000000080000000";

export default { name, bytecode };
const simpleCreate = { name, bytecode };

export default simpleCreate;
4 changes: 3 additions & 1 deletion src/bytecodes/subcontainers.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@ const name = "Subcontainers 1";
const bytecode =
"0xef0001010008020002000d0006030002003200140400000000800004008000026000600060006000ec00e5000160006000ee01ef000101000402000100060300010014040000000080000260006000ee00ef00010100040200010001040000000080000000ef00010100040200010001040000000080000000";

export default { name, bytecode };
const subcontainers = { name, bytecode };

export default subcontainers;

0 comments on commit ffaedaa

Please sign in to comment.