Skip to content

Commit

Permalink
fix(move): fix codegen for 0x4 (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
zfy0701 authored Nov 20, 2023
1 parent f0cf18a commit 679c62c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/move/src/abstract-codegen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export abstract class AbstractCodegen<ModuleTypes, StructType> {
PREFIX: string
STRUCT_FIELD_NAME: string = 'data'
PAYLOAD_OPTIONAL = false
SYSTEM_MODULES = new Set(['0x1', '0x2', '0x3'])
SYSTEM_MODULES = new Set(['0x1', '0x2', '0x3', '0x4'])
ESM = true

chainAdapter: ChainAdapter<ModuleTypes, StructType>
Expand Down

0 comments on commit 679c62c

Please sign in to comment.