Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
mrtnetwork committed Nov 30, 2024
1 parent 9e22e51 commit 01d915f
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ class ElectrumSSLService with BitcoinBaseElectrumRPCService {
}

void _onMessge(List<int> event) {
print("Event ${utf8.decode(event)}");
final Map<String, dynamic> decode = json.decode(utf8.decode(event));
if (decode.containsKey("id")) {
final int id = int.parse(decode["id"]!.toString());
Expand Down
1 change: 0 additions & 1 deletion lib/src/bitcoin/script/input.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import 'dart:typed_data';

import 'package:bitcoin_base/src/bitcoin/script/op_code/constant.dart';
import 'package:bitcoin_base/src/exception/exception.dart';
import 'package:blockchain_utils/utils/utils.dart';
import 'script.dart';

Expand Down
3 changes: 0 additions & 3 deletions lib/src/bitcoin/script/script.dart
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,6 @@ class Script {
if (token is int) {
scriptBytes.add(pushInteger(token));
} else {
final pl = opPushData(token);
print("Large ${pl.length}");

scriptBytes.add(opPushData(token));
}
}
Expand Down

0 comments on commit 01d915f

Please sign in to comment.