Skip to content

Commit

Permalink
fix: register the new schema
Browse files Browse the repository at this point in the history
Signed-off-by: Valentin Tronkov <[email protected]>
  • Loading branch information
vtronkov committed Jul 17, 2024
1 parent 8477eb6 commit a56d05f
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
import com.hedera.node.app.service.token.impl.schemas.SyntheticAccountCreator;
import com.hedera.node.app.service.token.impl.schemas.V0490TokenSchema;
import com.hedera.node.app.service.token.impl.schemas.V0500TokenSchema;
import com.hedera.node.app.service.token.impl.schemas.V0530TokenSchema;
import com.swirlds.state.spi.SchemaRegistry;
import edu.umd.cs.findbugs.annotations.NonNull;
import java.time.ZoneId;
Expand All @@ -44,5 +45,6 @@ public void registerSchemas(@NonNull final SchemaRegistry registry) {
requireNonNull(registry);
registry.register(new V0490TokenSchema(new SyntheticAccountCreator()));
registry.register(new V0500TokenSchema());
registry.register(new V0530TokenSchema());
}
}

0 comments on commit a56d05f

Please sign in to comment.