File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
constants/src/lib/constants Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ export const NETWORK_CONTEXT_BY_NETWORK: {
1717 'datil-test' : datilTest ,
1818 datil : datil ,
1919 'naga-dev' : _nagaDev ,
20- custom : undefined ,
20+ custom : _nagaDev ,
2121} as const ;
2222
2323export const GLOBAL_OVERWRITE_IPFS_CODE_BY_NETWORK : {
Original file line number Diff line number Diff line change @@ -1062,10 +1062,9 @@ export class LitContracts {
10621062 } ;
10631063
10641064 private static _resolveContractContext (
1065- network : LIT_NETWORK_VALUES ,
1066- networkContext ?: LitContractContext | LitContractResolverContext
1065+ network : LIT_NETWORK_VALUES
10671066 ) : LitContract [ ] {
1068- const data = networkContext || NETWORK_CONTEXT_BY_NETWORK [ network ] ;
1067+ const data = NETWORK_CONTEXT_BY_NETWORK [ network ] ;
10691068
10701069 if ( ! data ) {
10711070 throw new WrongNetworkException (
You can’t perform that action at this time.
0 commit comments