mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 18:00:17 +01:00
6f2280ab0e
WIP: Create batch TX WIP: Continuing... WIP: More work WIP: More work... WIP WIP Update signer.js FIX: Fix Send Max ADD: Warn user if they want to make a max transaction but then switch to a wallet without support. FIX: Fixed BIP70 processing FIX: Removed parameter FIX: Fixed multiple UI recipient bugs. WIP WIP ADD: Scroll the problematic transaction Update details.js Update details.js FIX: Fix crash when switching wallets FIX: Success message
7 lines
132 B
JavaScript
7 lines
132 B
JavaScript
export class BitcoinTransaction {
|
|
constructor(address = '', amount) {
|
|
this.address = address;
|
|
this.amount = amount;
|
|
}
|
|
}
|