hashgraph / hedera-sdk-rust

The Hedera™ Rust SDK
Apache License 2.0
42 stars 14 forks source link

feat: add From<Transaction<X>> to allow easy casting of transactions #831

Closed mehcode closed 2 months ago

mehcode commented 2 months ago

Description:

Allow the following to work:

let transaction = TransferTransaction::new();
let transaction = AnyTransaction::from(transaction);