clean up unused code

This commit is contained in:
julian 2023-10-30 11:41:32 -06:00
parent 56bd1eff37
commit 455a45eb50
2 changed files with 2 additions and 11 deletions

View file

@ -109,12 +109,3 @@ class TransactionV2 {
')'; ')';
} }
} }
enum TxDirection {
outgoing,
incoming;
}
enum TxType {
normal,
}

View file

@ -108,7 +108,7 @@ class Bitcoin extends Bip39HDCurrency {
); );
return (address: addr, addressType: AddressType.p2sh); return (address: addr, addressType: AddressType.p2sh);
break;
case DerivePathType.bip49: case DerivePathType.bip49:
// addressString = P2SH( // addressString = P2SH(
// data: PaymentData( // data: PaymentData(
@ -137,7 +137,7 @@ class Bitcoin extends Bip39HDCurrency {
); );
return (address: addr, addressType: AddressType.p2wpkh); return (address: addr, addressType: AddressType.p2wpkh);
break;
default: default:
throw Exception("DerivePathType $derivePathType not supported"); throw Exception("DerivePathType $derivePathType not supported");
} }