mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-06 04:17:42 +00:00
10 lines
269 B
Dart
10 lines
269 B
Dart
import 'package:stackwallet/wallets/crypto_currency/crypto_currency.dart';
|
|
|
|
abstract class CryptonoteCurrency extends CryptoCurrency {
|
|
CryptonoteCurrency(super.network);
|
|
|
|
@override
|
|
String get genesisHash {
|
|
return "not used in stack's cryptonote coins";
|
|
}
|
|
}
|