Skip to content

Commit

Permalink
chore: update the ledger genesis transactions. (openwallet-foundation…
Browse files Browse the repository at this point in the history
…#1139)

Signed-off-by: Jason C. Leach <[email protected]>
  • Loading branch information
jleach authored May 8, 2024
1 parent decdd24 commit 8975556
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
10 changes: 5 additions & 5 deletions packages/legacy/core/App/configs/ledgers/indy/ledgers.json

Large diffs are not rendered by default.

22 changes: 11 additions & 11 deletions scripts/make-blocks.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ const url = require('url')
const networkUrl =
'https://raw.githubusercontent.com/hyperledger/indy-node-monitor/main/fetch-validator-status/networks.json'
const networksToAdd = [
{ id: 'bct', connectionOnStartup: true, production: false },
{ id: 'cdn', connectionOnStartup: true, production: false },
{ id: 'ctn', connectionOnStartup: true, production: false },
{ id: 'cpn', connectionOnStartup: true, production: true },
{ id: 'imn', connectionOnStartup: true, production: true },
{ id: 'idn', connectionOnStartup: true, production: false },
{ id: 'itn', connectionOnStartup: true, production: false },
{ id: 'sbn', connectionOnStartup: true, production: false },
{ id: 'ssn', connectionOnStartup: true, production: false },
{ id: 'smn', connectionOnStartup: true, production: true },
{ id: 'bct', connectOnStartup: true, production: false },
{ id: 'cdn', connectOnStartup: true, production: false },
{ id: 'ctn', connectOnStartup: true, production: false },
{ id: 'cpn', connectOnStartup: true, production: true },
{ id: 'imn', connectOnStartup: true, production: true },
{ id: 'idn', connectOnStartup: true, production: false },
{ id: 'itn', connectOnStartup: true, production: false },
{ id: 'sbn', connectOnStartup: true, production: false },
{ id: 'ssn', connectOnStartup: true, production: false },
{ id: 'smn', connectOnStartup: true, production: true },
]
const networkNameRe = /\W+/im

Expand Down Expand Up @@ -56,7 +56,7 @@ const main = async () => {
id: name,
indyNamespace: n['indyNamespace'],
isProduction: n['production'],
connectionOnStartup: n['connectionOnStartup'],
connectOnStartup: n['connectOnStartup'],
genesisTransactions: transaction.trim(),
})
}
Expand Down

0 comments on commit 8975556

Please sign in to comment.