Skip to content

Commit

Permalink
sidesail: remove redundant mnemonic arg
Browse files Browse the repository at this point in the history
  • Loading branch information
Marc Platt authored and Marc Platt committed Jan 28, 2025
1 parent 21e25ab commit 9637291
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
3 changes: 1 addition & 2 deletions clients/sidesail/lib/rpc/rpc_ethereum.dart
Original file line number Diff line number Diff line change
Expand Up @@ -200,9 +200,8 @@ class EthereumRPCLive extends EthereumRPC {
Future<void> initBinary(
BuildContext context, {
List<String>? arg,
String? mnemonicPath,
}) async {
await super.initBinary(context, arg: arg, mnemonicPath: mnemonicPath);
await super.initBinary(context, arg: arg);
}
}

Expand Down
3 changes: 1 addition & 2 deletions clients/sidesail/lib/rpc/rpc_testchain.dart
Original file line number Diff line number Diff line change
Expand Up @@ -278,9 +278,8 @@ class TestchainRPCLive extends TestchainRPC {
Future<void> initBinary(
BuildContext context, {
List<String>? arg,
String? mnemonicPath,
}) async {
await super.initBinary(context, arg: arg, mnemonicPath: mnemonicPath);
await super.initBinary(context, arg: arg);
}
}

Expand Down
1 change: 0 additions & 1 deletion clients/sidesail/lib/rpc/rpc_zcash.dart
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ abstract class ZCashRPC extends SidechainRPC {
Future<void> initBinary(
BuildContext context, {
List<String>? arg,
String? mnemonicPath,
}) async {
final args = await binaryArgs(conf);
args.addAll(arg ?? []);
Expand Down

0 comments on commit 9637291

Please sign in to comment.