Skip to content

Commit

Permalink
Updated deps and fixed liner nags.
Browse files Browse the repository at this point in the history
  • Loading branch information
xclud committed Feb 28, 2024
1 parent 9d4e0e4 commit f960b84
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion lib/src/contracts/abi/arrays.dart
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ class DynamicLengthArray<T> extends BaseArrayType<T> {
int get hashCode => 31 * type.hashCode;

@override
bool operator ==(dynamic other) {
bool operator ==(Object other) {
return identical(this, other) ||
(other is DynamicLengthArray && other.type == type);
}
Expand Down
2 changes: 1 addition & 1 deletion lib/src/contracts/abi/integers.dart
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ class BoolType extends AbiType<bool> {
int get hashCode => runtimeType.hashCode;

@override
bool operator ==(dynamic other) {
bool operator ==(Object other) {
return other.runtimeType == BoolType;
}
}
Expand Down
2 changes: 1 addition & 1 deletion lib/src/core/ether_amount.dart
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,6 @@ class EtherAmount {
int get hashCode => getInWei.hashCode;

@override
bool operator ==(dynamic other) =>
bool operator ==(Object other) =>
other is EtherAmount && other.getInWei == getInWei;
}
6 changes: 3 additions & 3 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ environment:
sdk: ">=2.12.0 <4.0.0"

dependencies:
pointycastle: ^3.7.3
pointycastle: ^3.7.4
sec: ^1.1.0
http: ">=0.13.1 <2.0.0"
uuid: ^4.0.0
Expand All @@ -20,8 +20,8 @@ dependencies:
typed_data: ^1.3.2
convert: ^3.1.1
async: ^2.11.0
wallet: ^0.0.12+1
wallet: ^0.0.13

dev_dependencies:
test: ^1.24.6
lints: ^2.1.1
lints: ^3.0.0

0 comments on commit f960b84

Please sign in to comment.