Skip to content

Commit a02fd5f

Browse files
committed
chore: lint
1 parent fe8f9e7 commit a02fd5f

File tree

29 files changed

+129
-263
lines changed

29 files changed

+129
-263
lines changed

packages/injective-std/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ version = "1.13.3"
1010
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1111

1212
[dependencies]
13-
chrono = { workspace = true }
14-
cosmwasm-std = { workspace = true }
15-
osmosis-std-derive = { package = "injective-std-derive", path = "../injective-std-derive" }
16-
prost = { workspace = true }
17-
prost-types = { workspace = true }
18-
schemars = { workspace = true }
19-
serde = { workspace = true }
20-
serde-cw-value = { workspace = true }
13+
chrono = { workspace = true }
14+
cosmwasm-std = { workspace = true }
15+
injective-std-derive = { path = "../injective-std-derive" }
16+
prost = { workspace = true }
17+
prost-types = { workspace = true }
18+
schemars = { workspace = true }
19+
serde = { workspace = true }
20+
serde-cw-value = { workspace = true }

packages/injective-std/src/types/cosmos/auth/module/v1.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use osmosis_std_derive::CosmwasmExt;
1+
use injective_std_derive::CosmwasmExt;
22
/// Module is the config object for the auth module.
33
#[allow(clippy::derive_partial_eq_without_eq)]
44
#[derive(Clone, PartialEq, Eq, ::prost::Message)]

packages/injective-std/src/types/cosmos/auth/v1beta1.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use osmosis_std_derive::CosmwasmExt;
1+
use injective_std_derive::CosmwasmExt;
22
/// BaseAccount defines a base account type. It contains all the necessary fields
33
/// for basic account functionality. Any custom account type should extend this
44
/// type for additional functionality (e.g. vesting).

packages/injective-std/src/types/cosmos/authz/module/v1.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use osmosis_std_derive::CosmwasmExt;
1+
use injective_std_derive::CosmwasmExt;
22
/// Module is the config object of the authz module.
33
#[allow(clippy::derive_partial_eq_without_eq)]
44
#[derive(Clone, Copy, PartialEq, Eq, ::prost::Message)]

packages/injective-std/src/types/cosmos/authz/v1beta1.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use osmosis_std_derive::CosmwasmExt;
1+
use injective_std_derive::CosmwasmExt;
22
/// GenericAuthorization gives the grantee unrestricted permissions to execute
33
/// the provided method on behalf of the granter's account.
44
#[allow(clippy::derive_partial_eq_without_eq)]

packages/injective-std/src/types/cosmos/bank/module/v1.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use osmosis_std_derive::CosmwasmExt;
1+
use injective_std_derive::CosmwasmExt;
22
/// Module is the config object of the bank module.
33
#[allow(clippy::derive_partial_eq_without_eq)]
44
#[derive(Clone, PartialEq, Eq, ::prost::Message)]

packages/injective-std/src/types/cosmos/bank/v1beta1.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use osmosis_std_derive::CosmwasmExt;
1+
use injective_std_derive::CosmwasmExt;
22
/// SendAuthorization allows the grantee to spend up to spend_limit coins from
33
/// the granter's account.
44
///

packages/injective-std/src/types/cosmos/base/node/v1beta1.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use osmosis_std_derive::CosmwasmExt;
1+
use injective_std_derive::CosmwasmExt;
22
/// ConfigRequest defines the request structure for the Config gRPC query.
33
#[allow(clippy::derive_partial_eq_without_eq)]
44
#[derive(Clone, Copy, PartialEq, Eq, ::prost::Message)]

packages/injective-std/src/types/cosmos/base/query/v1beta1.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use osmosis_std_derive::CosmwasmExt;
1+
use injective_std_derive::CosmwasmExt;
22
/// PageRequest is to be embedded in gRPC request messages for efficient
33
/// pagination. Ex:
44
///

packages/injective-std/src/types/cosmos/base/v1beta1.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use osmosis_std_derive::CosmwasmExt;
1+
use injective_std_derive::CosmwasmExt;
22
/// Coin defines a token with a denomination and an amount.
33
///
44
/// NOTE: The amount field is an Int which implements the custom method

0 commit comments

Comments
 (0)