@@ -102,15 +102,15 @@ describe('ExportInCTxBuilder', function () {
102102 rawTx . should . equal ( testData . unsignedHex ) ;
103103 } ) ;
104104
105- it ( 'Should recover export tx from raw tx' , async ( ) => {
105+ xit ( 'Should recover export tx from raw tx' , async ( ) => {
106106 const txBuilder = new TransactionBuilderFactory ( coins . get ( 'tflrp' ) ) . from ( testData . unsignedHex ) ;
107107
108108 const tx = await txBuilder . build ( ) ;
109109 const rawTx = tx . toBroadcastFormat ( ) ;
110110 rawTx . should . equal ( testData . unsignedHex ) ;
111111 } ) ;
112112
113- it ( 'Should recover signed export from signed raw tx' , async ( ) => {
113+ xit ( 'Should recover signed export from signed raw tx' , async ( ) => {
114114 const txBuilder = new TransactionBuilderFactory ( coins . get ( 'tflrp' ) ) . from ( testData . signedHex ) ;
115115 const tx = await txBuilder . build ( ) ;
116116 const rawTx = tx . toBroadcastFormat ( ) ;
@@ -124,9 +124,10 @@ describe('ExportInCTxBuilder', function () {
124124 const tx = await txBuilder . build ( ) ;
125125 const rawTx = tx . toBroadcastFormat ( ) ;
126126 rawTx . should . equal ( testData . signedHex ) ;
127+ tx . signature . should . eql ( testData . signature ) ;
127128 } ) ;
128129
129- it ( 'Should full sign a export tx from unsigned raw tx' , async ( ) => {
130+ xit ( 'Should full sign a export tx from unsigned raw tx' , async ( ) => {
130131 const txBuilder = new TransactionBuilderFactory ( coins . get ( 'tflrp' ) ) . from ( testData . unsignedHex ) ;
131132 txBuilder . sign ( { key : testData . privateKey } ) ;
132133 const tx = await txBuilder . build ( ) ;
0 commit comments