Skip to content

Commit dffd794

Browse files
author
Gianmarco Fraccaroli
committed
update to v0.30.0
1 parent 7c66895 commit dffd794

File tree

3 files changed

+14
-11
lines changed

3 files changed

+14
-11
lines changed

Cargo.lock

+11-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ rand = "0.8.5"
3737
rand_chacha = "0.3.1"
3838
dotenvy = "0.15.7"
3939
hex = "0.4.3"
40-
namada_sdk = { git = "https://github.com/anoma/namada", tag = "v0.29.0", default-features = false, features = ["tendermint-rpc", "std", "async-client", "async-send", "download-params"] }
40+
namada_sdk = { git = "https://github.com/anoma/namada", tag = "v0.30.0", default-features = false, features = ["tendermint-rpc", "std", "async-client", "async-send", "download-params"] }
4141
tendermint-config = "0.34.0"
4242
tendermint-rpc = { version = "0.34.0", features = ["http-client"]}
4343
orion = "0.17.5"

src/handler/faucet.rs

+2
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,8 @@ pub async fn request_transfer(
111111
InputAmount::Unvalidated(denominated_amount),
112112
);
113113

114+
transfer_tx_builder.tx.memo = Some("Transfer from faucet".to_string().as_bytes().to_vec());
115+
114116
let (mut transfer_tx, signing_data, _epoch) = transfer_tx_builder
115117
.build(&*state.sdk)
116118
.await

0 commit comments

Comments
 (0)