BlueWallet/models/bitcoinTransactionInfo.js
Marcos Rodriguez 6f2280ab0e ADD: Batch send UI
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
2019-09-11 21:35:11 -04:00

7 lines
132 B
JavaScript

export class BitcoinTransaction {
constructor(address = '', amount) {
this.address = address;
this.amount = amount;
}
}