Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prototype Cardano transaction #1688

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
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 mithril-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ tokio = { version = "1.40.0", features = ["macros", "rt-multi-thread", "time"] }
mithril-build-script = { path = "../internal/mithril-build-script", version = "=0.2" }

[features]
default = ["rug-backend"]
default = ["rug-backend", "allow_skip_signer_certification"]

# Full feature set
full = ["random", "fs", "test_tools"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,14 +127,14 @@ impl ChainReaderBlockStreamer {
match chain_reader.get_next_chain_block().await? {
Some(ChainBlockNextAction::RollForward { parsed_block }) => {
if parsed_block.block_number > self.until {
trace!(
debug!(
self.logger,
"Received a RollForward above threshold block number ({})",
parsed_block.block_number
);
Ok(None)
} else {
trace!(
debug!(
self.logger,
"Received a RollForward below threshold block number ({})",
parsed_block.block_number
Expand Down