Skip to content

Commit

Permalink
minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
quetool committed Apr 23, 2024
1 parent f149e64 commit dedf7c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## 2.2.3-beta03

- Full web support
- Fix on requestWriteContract() function where parameters were not parsed properly
- Fix on `requestWriteContract()` function where parameters were not parsed properly

## 2.2.2

Expand Down
2 changes: 1 addition & 1 deletion lib/apis/sign_api/sign_engine.dart
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,7 @@ class SignEngine implements ISignEngine {
String? method,
List<dynamic> parameters = const [],
}) async {
if ((transaction.from?.toString() ?? '').isEmpty) {
if (transaction.from == null) {
throw Exception('Transaction must include `from` value');
}
final credentials = CustomCredentials(
Expand Down

0 comments on commit dedf7c2

Please sign in to comment.