Skip to content
Snippets Groups Projects
Commit 2791abbb authored by Éloïs's avatar Éloïs
Browse files

[fix] #27

parent f0a99b64
No related branches found
No related tags found
No related merge requests found
......@@ -94,7 +94,7 @@ dependencies = [
[[package]]
name = "duniter-documents"
version = "0.5.0"
version = "0.6.0"
dependencies = [
"base58 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
"base64 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
......
[package]
name = "duniter-documents"
version = "0.5.0"
version = "0.6.0"
authors = ["nanocryk <nanocryk@duniter.org>", "elois <elois@ifee.fr>"]
description = "Handles Duniter documents"
repository = "https://git.duniter.org/nodes/rust/duniter-rs"
......
......@@ -435,7 +435,7 @@ impl TextDocument for TransactionDocument {
impl IntoSpecializedDocument<BlockchainProtocol> for TransactionDocument {
fn into_specialized(self) -> BlockchainProtocol {
BlockchainProtocol::V10(V10Document::Transaction(Box::new(self)))
BlockchainProtocol::V10(Box::new(V10Document::Transaction(Box::new(self))))
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment