Skip to content

Commit 2d64bdf

Browse files
fix: remove unused Bytes imports after KeyMetadata type change
🤖 Generated with Codebuff Co-Authored-By: Codebuff <noreply@codebuff.com>
1 parent cc56bc6 commit 2d64bdf

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

creator-keys/src/events.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ use crate::{
2525
CreatorKeysContractArgs, CreatorKeysContractClient,
2626
};
2727
use soroban_sdk::{
28-
contracterror, contractimpl, contracttype, symbol_short, Address, Bytes, Env, String, Symbol,
28+
contracterror, contractimpl, contracttype, symbol_short, Address, Env, String, Symbol,
2929
Vec,
3030
};
3131

creator-keys/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
pub mod quote_view_errors;
44

55
use soroban_sdk::{
6-
contract, contracterror, contractimpl, contracttype, Address, Bytes, Env, String, Vec,
6+
contract, contracterror, contractimpl, contracttype, Address, Env, String, Vec,
77
};
88

99
pub mod events;

creator-keys/src/test_issues_778_779_781_782.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use crate::{
66
RegisterCreatorParams,
77
};
88
use soroban_sdk::{
9-
testutils::Address as _, testutils::Ledger as _, Address, Bytes, Env, String, Vec,
9+
testutils::Address as _, testutils::Ledger as _, Address, Env, String, Vec,
1010
};
1111

1212
fn setup_test() -> (Env, CreatorKeysContractClient<'static>, Address, Address) {

0 commit comments

Comments
 (0)