Skip to content

Commit

Permalink
test rebuilding in prcommit
Browse files Browse the repository at this point in the history
  • Loading branch information
glitch003 committed Jan 9, 2025
1 parent 5afe4c4 commit 8fb81de
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion go/lit_go_sdk/bundled_server.js
Original file line number Diff line number Diff line change
Expand Up @@ -290067,7 +290067,7 @@ app.use(
);
app.listen(port, async () => {
app.locals.litNodeClient = new import_lit_node_client_nodejs.LitNodeClientNodeJs({
litNetwork: import_constants2.LitNetwork.DatilDev
litNetwork: import_constants2.LIT_NETWORK.DatilDev
});
await app.locals.litNodeClient.connect();
console.log(`Server is running at http://localhost:${port}`);
Expand Down
3 changes: 2 additions & 1 deletion js-sdk-server/src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import {
ProviderType,
LIT_ABILITY,
LIT_NETWORKS,
LIT_NETWORK,
} from '@lit-protocol/constants';
import { ethers } from 'ethers';
import {
Expand Down Expand Up @@ -472,7 +473,7 @@ app.use(

app.listen(port, async () => {
app.locals.litNodeClient = new LitNodeClientNodeJs({
litNetwork: LitNetwork.DatilDev,
litNetwork: LIT_NETWORK.DatilDev,
});
await app.locals.litNodeClient.connect();
console.log(`Server is running at http://localhost:${port}`);
Expand Down
2 changes: 1 addition & 1 deletion python/lit_python_sdk/bundled_server.js
Original file line number Diff line number Diff line change
Expand Up @@ -290067,7 +290067,7 @@ app.use(
);
app.listen(port, async () => {
app.locals.litNodeClient = new import_lit_node_client_nodejs.LitNodeClientNodeJs({
litNetwork: import_constants2.LitNetwork.DatilDev
litNetwork: import_constants2.LIT_NETWORK.DatilDev
});
await app.locals.litNodeClient.connect();
console.log(`Server is running at http://localhost:${port}`);
Expand Down

0 comments on commit 8fb81de

Please sign in to comment.