forked from IntersectMBO/cardano-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add supervisord-cluster to shell.nix supervisord cluster: map service accross numBft and numPools Build pools setup transaction (transfer, register, delegate). Ignore supervisord.pid cluster improvements iohk-nix: back to master stylistic changes Fix dockerImage attr in default.nix
- Loading branch information
1 parent
d948f9f
commit a68fcd8
Showing
12 changed files
with
361 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
defaultLogConfig | ||
, stateDir | ||
}: | ||
|
||
rec { | ||
inherit stateDir; | ||
useByronWallet = true; | ||
relaysNew = "127.0.0.1"; | ||
edgePort = 3001; | ||
confKey = "local"; | ||
private = false; | ||
networkConfig = { | ||
GenesisFile = "keys/genesis.json"; | ||
Protocol = "TPraos"; | ||
RequiresNetworkMagic = "RequiresMagic"; | ||
LastKnownBlockVersion-Major = 0; | ||
LastKnownBlockVersion-Minor = 0; | ||
LastKnownBlockVersion-Alt = 0; | ||
}; | ||
nodeConfig = networkConfig // defaultLogConfig; | ||
consensusProtocol = networkConfig.Protocol; | ||
} |
Oops, something went wrong.