Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.

Commit b6a8dbc

Browse files
Prepare 1.0.0-alpha.4 (#113)
1 parent 5fa6d2a commit b6a8dbc

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cli-wallet"
3-
version = "1.0.0-alpha.3"
3+
version = "1.0.0-alpha.4"
44
authors = [ "IOTA Stiftung" ]
55
edition = "2021"
66
homepage = "https://iota.org"
@@ -16,7 +16,7 @@ clap = { version = "3.2.5", default-features = false, features = [ "derive", "st
1616
dialoguer = { version = "0.10.1", default-features = false, features = [ "password" ] }
1717
fern-logger = { version = "0.5.0", default-features = false }
1818
iota-crypto = { version = "0.12.1", default-features = false, features = [ "std", "random", "sha", "pbkdf", "hmac", "bip39", "bip39-en", "chacha", "blake2b", "slip10" ] }
19-
iota-wallet = { git = "https://github.com/iotaledger/wallet.rs", rev = "7bf05046536fcb64e59a3290a76a4cb36f43db37", default-features = false, features = [ "storage", "stronghold" ] }
19+
iota-wallet = { git = "https://github.com/iotaledger/wallet.rs", rev = "1e9ae9e05b1a992202e627fa91bc748466e6b53e", default-features = false, features = [ "storage", "stronghold" ] }
2020
log = { version = "0.4.17", default-features = false }
2121
prefix-hex = { version = "0.4.0", default-features = false, features = [ "std" ] }
2222
thiserror = { version = "1.0.31", default-features = false }

src/command/account.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use clap::{Parser, Subcommand};
77
use iota_wallet::{
88
account::{
99
types::{AccountAddress, Transaction},
10-
AccountHandle, OutputsToCollect,
10+
AccountHandle, OutputsToClaim,
1111
},
1212
iota_client::{
1313
bee_block::output::{AliasId, FoundryId, NftId, TokenId},
@@ -150,7 +150,7 @@ pub async fn balance_command(account_handle: &AccountHandle) -> Result<(), Error
150150
pub async fn claim_command(account_handle: &AccountHandle) -> Result<(), Error> {
151151
log::info!("Claiming outputs.");
152152

153-
let claiming_txs = account_handle.try_collect_outputs(OutputsToCollect::All).await?;
153+
let claiming_txs = account_handle.try_claim_outputs(OutputsToClaim::All).await?;
154154

155155
for claim_tx in claiming_txs {
156156
log::info!("Claim transaction sent: {claim_tx:?}");

0 commit comments

Comments
 (0)