We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2bbd0e1 commit 07dd9aeCopy full SHA for 07dd9ae
blockchain/contracts/scripts/deploy_lit_node_contracts.js
@@ -537,9 +537,10 @@ async function deployLitNodeContracts(deployNodeConfig) {
537
// Create a default realm
538
tx = await stakingContract.addRealm();
539
await tx.wait();
540
- let realmConfig = stakingContract.realmConfig(1);
541
542
- // Ensure the default keyset is set
+ // Ensure the default keyset is set
+ let realmConfig = stakingContract.realmConfig(1);
543
+ console.log('Config for realm 1', realmConfig);
544
realmConfig.defaultKeySet = DEFAULT_KEY_SET_NAME;
545
tx = await stakingContract.setRealmConfig(1, realmConfig);
546
0 commit comments