Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -116,10 +116,6 @@ cw_shared_external/ios/External/
cw_haven/ios/External/
cw_haven/android/.externalNativeBuild/
cw_haven/android/.cxx/
# cw_wownero/**
cw_wownero/ios/External/
cw_wownero/android/.externalNativeBuild/
cw_wownero/android/.cxx/

lib/bitcoin/bitcoin.dart
#lib/monero/monero.dart
Expand Down
Binary file removed assets/images/wownero_logo.png
Binary file not shown.
Binary file removed assets/images/wownero_menu.png
Binary file not shown.
24 changes: 0 additions & 24 deletions assets/wownero_node_list.yml

This file was deleted.

6 changes: 3 additions & 3 deletions cw_core/lib/pathForWallet.dart
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ Future<Directory> applicationRootDirectory() async {
// todo: can merge and do same as regular linux home dir?
if (bool.fromEnvironment("IS_ARM")) {
appDirectory = await getApplicationDocumentsDirectory();
appDirectory = Directory("${appDirectory.path}/.stackwallet");
appDirectory = Directory("${appDirectory.path}/.stackduo");
} else if (Platform.isLinux) {
appDirectory = Directory("${Platform.environment['HOME']}/.stackwallet");
appDirectory = Directory("${Platform.environment['HOME']}/.stackduo");
} else if (Platform.isWindows) {
// TODO: windows root .stackwallet dir location
// TODO: windows root .stackduo dir location
throw Exception("Unsupported platform");
} else if (Platform.isMacOS) {
// currently run in ipad mode??
Expand Down
4 changes: 0 additions & 4 deletions cw_monero/ios/Classes/monero_api.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,6 @@ extern "C"
uint64_t amount;
uint64_t fee;
char *hash;
char *hex;
char *txKey;
Monero::PendingTransaction *transaction;

PendingTransactionRaw(Monero::PendingTransaction *_transaction)
Expand All @@ -182,8 +180,6 @@ extern "C"
amount = _transaction->amount();
fee = _transaction->fee();
hash = strdup(_transaction->txid()[0].c_str());
hex = strdup(_transaction->hex()[0].c_str());
txKey = strdup(_transaction->txKey()[0].c_str());
}
};

Expand Down
4 changes: 0 additions & 4 deletions cw_monero/lib/api/transaction_history.dart
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,6 @@ PendingTransactionDescription createTransactionSync(
amount: pendingTransactionRawPointer.ref.amount,
fee: pendingTransactionRawPointer.ref.fee,
hash: pendingTransactionRawPointer.ref.getHash(),
hex: pendingTransactionRawPointer.ref.getHex(),
txKey: pendingTransactionRawPointer.ref.getKey(),
pointerAddress: pendingTransactionRawPointer.address);
}

Expand Down Expand Up @@ -168,8 +166,6 @@ PendingTransactionDescription createTransactionMultDestSync(
amount: pendingTransactionRawPointer.ref.amount,
fee: pendingTransactionRawPointer.ref.fee,
hash: pendingTransactionRawPointer.ref.getHash(),
hex: pendingTransactionRawPointer.ref.getHex(),
txKey: pendingTransactionRawPointer.ref.getKey(),
pointerAddress: pendingTransactionRawPointer.address);
}

Expand Down
11 changes: 0 additions & 11 deletions cw_wownero/.gitignore

This file was deleted.

10 changes: 0 additions & 10 deletions cw_wownero/.metadata

This file was deleted.

3 changes: 0 additions & 3 deletions cw_wownero/CHANGELOG.md

This file was deleted.

6 changes: 0 additions & 6 deletions cw_wownero/android/.classpath

This file was deleted.

8 changes: 0 additions & 8 deletions cw_wownero/android/.gitignore

This file was deleted.

23 changes: 0 additions & 23 deletions cw_wownero/android/.project

This file was deleted.

13 changes: 0 additions & 13 deletions cw_wownero/android/.settings/org.eclipse.buildship.core.prefs

This file was deleted.

Loading