mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-02-02 03:06:29 +00:00
SigningData toString
This commit is contained in:
parent
86c33d4cb5
commit
07a717d20a
1 changed files with 11 additions and 0 deletions
|
@ -28,4 +28,15 @@ class SigningData {
|
|||
Uint8List? output;
|
||||
ECPair? keyPair;
|
||||
Uint8List? redeemScript;
|
||||
|
||||
@override
|
||||
String toString() {
|
||||
return "SigningData{\n"
|
||||
" derivePathType: $derivePathType,\n"
|
||||
" utxo: $utxo,\n"
|
||||
" output: $output,\n"
|
||||
" keyPair: $keyPair,\n"
|
||||
" redeemScript: $redeemScript,\n"
|
||||
"}";
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue