Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ jobs:
go-version: "1.16"

- name: Setup | Artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4

- name: Setup | Checksums
run: for file in oura-*/oura-*; do openssl dgst -sha256 -r "$file" | awk '{print $1}' > "${file}.sha256"; done
Expand Down
152 changes: 83 additions & 69 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ mithril = ["mithril-client"]
[dependencies]
# pallas = { version = "0.31", features = ["hardano"] }
# pallas = { path = "../pallas/pallas", features = ["hardano"] }
pallas = { git = "https://github.com/txpipe/pallas", features = ["hardano"] }
pallas = { version = "0.32.0", features = ["hardano"] }

gasket = { version = "^0.7", features = ["derive"] }
gasket-prometheus = { version = "^0.7" }
Expand Down Expand Up @@ -76,4 +76,4 @@ mithril-client = { version = "^0.8", optional = true, features = ["fs"] }
miette = { version = "7.2.0", features = ["fancy"] }
itertools = "0.12.1"
redis = { version = "0.27.6", optional = true }
utxorpc = { version = "0.9.0", optional = true }
utxorpc = { version = "0.10.0", optional = true }
6 changes: 3 additions & 3 deletions src/bin/oura/run_daemon.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
use gasket::daemon::Daemon;
use oura::framework::*;
use oura::daemon::{run_daemon, ConfigRoot, MetricsConfig};
use oura::{framework::*, sinks::DummySink};
use std::net::SocketAddr;
use std::sync::Arc;
use tracing::info;
use oura::daemon::{run_daemon, ConfigRoot, MetricsConfig};

use crate::console;

Expand Down Expand Up @@ -42,7 +42,7 @@ pub fn run(args: &Args) -> Result<(), Error> {
setup_tracing();
}

let config = ConfigRoot::new(&args.config).map_err(Error::config)?;
let config: ConfigRoot<DummySink> = ConfigRoot::new(&args.config).map_err(Error::config)?;
let metrics = config.metrics.clone();

let daemon = run_daemon(config)?;
Expand Down
Loading