0xDaniEL | Master Dev

Results 4 comments of 0xDaniEL | Master Dev

@elsvv, I am getting the same error So I changed like this: ``` use std::sync::Arc; async fn create_simple_transfer() -> anyhow::Result { ... let transfer_arc: Vec = vec![transfer].into_iter().map(Arc::new).collect(); let body =...

> @elsvv, I am getting the same error So I changed like this: > > ``` > use std::sync::Arc; > > async fn create_simple_transfer() -> anyhow::Result { > ... >...

@elsvv, I've finally found the solution: ``` use anyhow::Result; use num_bigint::BigUint; use tonlib::client::TonClientInterface; use std::time::SystemTime; use std::sync::Arc; use tonlib::address::TonAddress; use tonlib::cell::Cell; use tonlib::cell::BagOfCells; use tonlib::message::TransferMessage; use tonlib::config::TESTNET_CONFIG; use tonlib::client::TonClient; use...