addOutput method
Add input to the transaction
Implementation
int addOutput(Uint8List scriptPubKey, int value) {
outputs.add(new Output(script: scriptPubKey, value: value));
return outputs.length - 1;
}
Add input to the transaction
int addOutput(Uint8List scriptPubKey, int value) {
outputs.add(new Output(script: scriptPubKey, value: value));
return outputs.length - 1;
}