Skip to content
Snippets Groups Projects
Unverified Commit dfd8f2bc authored by capossele's avatar capossele
Browse files

:package: Update packr

parent 99cfe7a7
No related branches found
No related tags found
No related merge requests found
......@@ -40,7 +40,7 @@ const (
)
func init() {
flag.Int(CfgFPCQuerySampleSize, 3, "Size of the voting quorum (k)")
flag.Int(CfgFPCQuerySampleSize, 21, "Size of the voting quorum (k)")
flag.Int(CfgFPCRoundInterval, 5, "FPC round interval [s]")
flag.String(CfgFPCBindAddress, "0.0.0.0:10895", "the bind address on which the FPC vote server binds to")
}
......
......@@ -28,7 +28,7 @@ class App extends React.Component<AppProps, any> {
<Link to="/autopeering">
Autopeering
</Link>
<Link to="/fpc-example">
<Link to="/consensus">
Consensus
</Link>
</nav>
......@@ -40,8 +40,8 @@ class App extends React.Component<AppProps, any> {
</header>
<Switch>
<Route path="/autopeering" component={Autopeering} />
<Route exact path="/fpc-example" component={FPC} />
<Route path="/fpc-example/conflict/:id" component={Conflict} />
<Route exact path="/consensus" component={FPC} />
<Route path="/consensus/conflict/:id" component={Conflict} />
<Redirect to="/autopeering" />
</Switch>
{this.props.children}
......
......@@ -12,7 +12,7 @@ export default class FPCItem extends React.Component<FPCItemProps, any> {
const total = Object.keys(this.props.nodeOpinions).length;
return (
<Link
to={`/fpc-example/conflict/${this.props.conflictID}`}
to={`/consensus/conflict/${this.props.conflictID}`}
className="fpc-item"
>
<div
......
This diff is collapsed.
......@@ -66,7 +66,7 @@ export class Root extends React.Component<Props, any> {
dRNG
</Nav.Link>
</LinkContainer>
<LinkContainer to="/fpc-example">
<LinkContainer to="/consensus">
<Nav.Link>
FPC
</Nav.Link>
......@@ -88,7 +88,7 @@ export class Root extends React.Component<Props, any> {
<Route exact path="/explorer/address/:id" component={ExplorerAddressQueryResult}/>
<Route exact path="/explorer/404/:search" component={Explorer404}/>
<Route exact path="/explorer" component={Explorer}/>
<Route exact path="/fpc-example" component={FPC}/>
<Route exact path="/consensus" component={FPC}/>
<Route exact path="/visualizer" component={Visualizer}/>
<Route exact path="/drng" component={Drng}/>
<Redirect to="/dashboard"/>
......
......@@ -17,9 +17,6 @@
],
"port": 14626
},
"fpctest": {
"bindAddress": "0.0.0.0:10895"
},
"dashboard": {
"bindAddress": "0.0.0.0:8081",
"dev": false,
......
......@@ -23,8 +23,8 @@ services:
--analysis.server.bindAddress=0.0.0.0:1888
--analysis.dashboard.bindAddress=0.0.0.0:9000
--node.enablePlugins=analysis-server,analysis-dashboard
--analysis.dashboard.dev=true
--node.disablePlugins=fpctest,portcheck,dashboard,analysis-client,gossip,drng,issuer,sync,metrics,messagelayer,valuetransfers,webapi,webapibroadcastdataendpoint,webapifindtransactionhashesendpoint,webapigetneighborsendpoint,webapigettransactionobjectsbyhashendpoint,webapigettransactiontrytesbyhashendpoint
--analysis.dashboard.dev=false
--node.disablePlugins=portcheck,dashboard,analysis-client,gossip,drng,issuer,sync,metrics,messagelayer,valuetransfers,webapi,webapibroadcastdataendpoint,webapifindtransactionhashesendpoint,webapigetneighborsendpoint,webapigettransactionobjectsbyhashendpoint,webapigettransactiontrytesbyhashendpoint
volumes:
- ./config.docker.json:/tmp/config.json:ro
- goshimmer-cache:/go
......@@ -41,7 +41,6 @@ services:
--config-dir=/tmp
--database.directory=/tmp/mainnetdb
--node.enablePlugins=bootstrap
--node.disablePlugins=valuetransfers
volumes:
- ./config.docker.json:/tmp/config.json:ro
- goshimmer-cache:/go
......@@ -58,7 +57,7 @@ services:
--config-dir=/tmp
--database.directory=/tmp/mainnetdb
--node.enablePlugins=bootstrap
--node.disablePlugins=dashboard,portcheck,valuetransfers
--node.disablePlugins=dashboard,portcheck
volumes:
- ./config.docker.json:/tmp/config.json:ro
- goshimmer-cache:/go
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment