mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-16 17:27:39 +00:00
Update required btc confirms to 1
This commit is contained in:
parent
d009088a36
commit
8b4215c6a1
2 changed files with 2 additions and 2 deletions
|
@ -42,7 +42,7 @@ import 'package:stackwallet/utilities/prefs.dart';
|
|||
import 'package:tuple/tuple.dart';
|
||||
import 'package:uuid/uuid.dart';
|
||||
|
||||
const int MINIMUM_CONFIRMATIONS = 2;
|
||||
const int MINIMUM_CONFIRMATIONS = 1;
|
||||
const int DUST_LIMIT = 294;
|
||||
|
||||
const String GENESIS_HASH_MAINNET =
|
||||
|
|
|
@ -28,7 +28,7 @@ import 'bitcoin_wallet_test_parameters.dart';
|
|||
void main() {
|
||||
group("bitcoin constants", () {
|
||||
test("bitcoin minimum confirmations", () async {
|
||||
expect(MINIMUM_CONFIRMATIONS, 2);
|
||||
expect(MINIMUM_CONFIRMATIONS, 1);
|
||||
});
|
||||
test("bitcoin dust limit", () async {
|
||||
expect(DUST_LIMIT, 294);
|
||||
|
|
Loading…
Reference in a new issue