From ce09cc4ce5f7783c1f5e28432be5c6f7bf86734c Mon Sep 17 00:00:00 2001 From: jdaev Date: Tue, 5 Oct 2021 17:05:36 -0400 Subject: [PATCH] task: correct whitespace --- lib/services/arweave/arweave_service.dart | 3 +++ pubspec.yaml | 1 + 2 files changed, 4 insertions(+) diff --git a/lib/services/arweave/arweave_service.dart b/lib/services/arweave/arweave_service.dart index ea673414e0..4aa8d4dab0 100644 --- a/lib/services/arweave/arweave_service.dart +++ b/lib/services/arweave/arweave_service.dart @@ -376,6 +376,7 @@ class ArweaveService { /// Creates and signs a [Transaction] representing the provided entity. /// /// Optionally provide a [SecretKey] to encrypt the entity data. + Future prepareEntityTx( Entity entity, Wallet wallet, [ @@ -406,6 +407,7 @@ class ArweaveService { /// Creates and signs a [DataItem] representing the provided entity. /// /// Optionally provide a [SecretKey] to encrypt the entity data. + Future prepareEntityDataItem( Entity entity, Wallet wallet, [ @@ -420,6 +422,7 @@ class ArweaveService { } /// Creates and signs a [Transaction] representing the provided [DataBundle]. + Future prepareDataBundleTx( DataBundle bundle, Wallet wallet) async { final bundleTx = await client.transactions.prepare( diff --git a/pubspec.yaml b/pubspec.yaml index 3dd96af373..6595ddc47c 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -54,6 +54,7 @@ dependencies: package_info_plus: ^1.0.3 js: ^0.6.3 collection: ^1.15.0-nullsafety.4 + dev_dependencies: flutter_test: