Update required btc confirms to 1

This commit is contained in:
julian 2022-09-13 16:21:48 -06:00
parent d009088a36
commit 8b4215c6a1
2 changed files with 2 additions and 2 deletions

View file

@ -42,7 +42,7 @@ import 'package:stackwallet/utilities/prefs.dart';
import 'package:tuple/tuple.dart'; import 'package:tuple/tuple.dart';
import 'package:uuid/uuid.dart'; import 'package:uuid/uuid.dart';
const int MINIMUM_CONFIRMATIONS = 2; const int MINIMUM_CONFIRMATIONS = 1;
const int DUST_LIMIT = 294; const int DUST_LIMIT = 294;
const String GENESIS_HASH_MAINNET = const String GENESIS_HASH_MAINNET =

View file

@ -28,7 +28,7 @@ import 'bitcoin_wallet_test_parameters.dart';
void main() { void main() {
group("bitcoin constants", () { group("bitcoin constants", () {
test("bitcoin minimum confirmations", () async { test("bitcoin minimum confirmations", () async {
expect(MINIMUM_CONFIRMATIONS, 2); expect(MINIMUM_CONFIRMATIONS, 1);
}); });
test("bitcoin dust limit", () async { test("bitcoin dust limit", () async {
expect(DUST_LIMIT, 294); expect(DUST_LIMIT, 294);