Skip to content

Commit

Permalink
fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
wc117 committed Jan 5, 2024
1 parent e610e13 commit 5d1d18b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ pub mod execute {
}
tokens.push(Token::Array(tokens_callback_args));
tokens.push(Token::Uint(Uint::from_big_endian(
&remaining_count.to_be_bytes()
&remaining_count.to_be_bytes(),
)));
WITHDRAW_TIMESTAMP.save(
deps.storage,
Expand All @@ -184,7 +184,7 @@ pub mod execute {
}
tokens.push(Token::Array(tokens_callback_args));
tokens.push(Token::Uint(Uint::from_big_endian(
&remaining_count.to_be_bytes()
&remaining_count.to_be_bytes(),
)));
WITHDRAW_TIMESTAMP.save(
deps.storage,
Expand Down

0 comments on commit 5d1d18b

Please sign in to comment.