mirror of
https://github.com/aljazceru/breez-sdk-docs.git
synced 2025-12-17 13:54:20 +01:00
Fix dart analyse errors
This commit is contained in:
@@ -1,6 +1,5 @@
|
|||||||
import 'dart:typed_data';
|
import 'dart:typed_data';
|
||||||
|
|
||||||
import 'package:breez_sdk/breez_sdk.dart';
|
|
||||||
import 'package:breez_sdk/bridge_generated.dart';
|
import 'package:breez_sdk/bridge_generated.dart';
|
||||||
|
|
||||||
NodeConfig productionNodeConfig() {
|
NodeConfig productionNodeConfig() {
|
||||||
@@ -8,7 +7,10 @@ NodeConfig productionNodeConfig() {
|
|||||||
// Read your Greenlight credentials from secure storage
|
// Read your Greenlight credentials from secure storage
|
||||||
Uint8List deviceKey = Uint8List(0);
|
Uint8List deviceKey = Uint8List(0);
|
||||||
Uint8List deviceCert = Uint8List(0);
|
Uint8List deviceCert = Uint8List(0);
|
||||||
GreenlightCredentials greenlightCredentials = GreenlightCredentials(deviceKey, deviceCert);
|
GreenlightCredentials greenlightCredentials = GreenlightCredentials(
|
||||||
|
deviceKey: deviceKey,
|
||||||
|
deviceCert: deviceCert,
|
||||||
|
);
|
||||||
|
|
||||||
NodeConfig nodeConfig = NodeConfig.greenlight(
|
NodeConfig nodeConfig = NodeConfig.greenlight(
|
||||||
config: GreenlightNodeConfig(
|
config: GreenlightNodeConfig(
|
||||||
|
|||||||
Reference in New Issue
Block a user