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

[fix] #27

parent 3979908a
No related branches found
No related tags found
No related merge requests found
[package] [package]
name = "duniter-documents" name = "duniter-documents"
version = "0.5.0" version = "0.6.0"
authors = ["nanocryk <nanocryk@duniter.org>", "elois <elois@ifee.fr>"] authors = ["nanocryk <nanocryk@duniter.org>", "elois <elois@ifee.fr>"]
description = "Handles Duniter documents" description = "Handles Duniter documents"
repository = "https://git.duniter.org/nodes/rust/duniter-rs" repository = "https://git.duniter.org/nodes/rust/duniter-rs"
......
...@@ -435,7 +435,7 @@ impl TextDocument for TransactionDocument { ...@@ -435,7 +435,7 @@ impl TextDocument for TransactionDocument {
impl IntoSpecializedDocument<BlockchainProtocol> for TransactionDocument { impl IntoSpecializedDocument<BlockchainProtocol> for TransactionDocument {
fn into_specialized(self) -> BlockchainProtocol { 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