Skip to content

Commit

Permalink
fix: use starknet::ContractAddress
Browse files Browse the repository at this point in the history
  • Loading branch information
notV4l committed Oct 9, 2023
1 parent 8e0bbd5 commit 5142c57
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions crates/dojo-lang/src/plugin_test_data/system
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ mod spawn {

#[storage]
struct Storage {
world_dispatcher: ContractAddress,
world_dispatcher: starknet::ContractAddress,
}

#[external(v0)]
Expand All @@ -66,7 +66,7 @@ mod proxy {

#[storage]
struct Storage {
world_dispatcher: ContractAddress,
world_dispatcher: starknet::ContractAddress,
}

#[external(v0)]
Expand All @@ -90,7 +90,7 @@ mod ctxnamed {

#[storage]
struct Storage {
world_dispatcher: ContractAddress,
world_dispatcher: starknet::ContractAddress,
}

#[external(v0)]
Expand Down
2 changes: 1 addition & 1 deletion crates/dojo-lang/src/system.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ impl System {
#[storage]
struct Storage {
world_dispatcher: ContractAddress,
world_dispatcher: starknet::ContractAddress,
}
#[external(v0)]
Expand Down

0 comments on commit 5142c57

Please sign in to comment.