Skip to content

Commit 43f4643

Browse files
committed
docs: fix minor documentation issues
Signed-off-by: Simon Gellis <[email protected]>
1 parent 74abd2d commit 43f4643

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ The easier way to get started is to use Docker compose to build your entire clus
2727
# To compose a cluster using Blockfrost as a backing store
2828
BLOCKFROST_KEY=previewXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX docker compose -f infra/docker-compose.yaml up --build -d
2929
30+
# If you are running your own Blockfrost instance, you can pass the url
31+
BLOCKFROST_BASE_URL=https://localhost:3000 docker compose -f infra/docker-compose.yaml up --build -d
32+
3033
# To create a cluster with a local cardano node (takes longer to spin up)
3134
docker compose -f infra/docker-compose.node.yaml up --build -d
3235

firefly-cardanoconnect/src/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ use crate::{
1515
pub struct CardanoConnectConfig {
1616
pub api: ApiConfig,
1717
pub connector: ConnectorConfig,
18+
pub contracts: Option<ContractsConfig>,
1819
#[serde(default)]
1920
pub http: HttpClientConfig,
2021
pub log: LogConfig,
2122
#[serde(default)]
2223
pub persistence: PersistenceConfig,
23-
pub contracts: Option<ContractsConfig>,
2424
}
2525

2626
#[derive(Debug, Deserialize)]

0 commit comments

Comments
 (0)