Skip to content

Commit

Permalink
fix: default limit in change trust
Browse files Browse the repository at this point in the history
  • Loading branch information
willemneal authored and gitbutler-client committed Nov 15, 2024
1 parent b37da02 commit 027199a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/soroban-cli/src/commands/tx/new/change_trust.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ pub struct Cmd {
#[arg(long)]
pub line: builder::Asset,
/// Limit for the trust line, 0 to remove the trust line
#[arg(long, default_value = u64::MAX.to_string())]
#[arg(long, default_value = i64::MAX.to_string())]
pub limit: i64,
}

Expand Down

0 comments on commit 027199a

Please sign in to comment.