@@ -310,7 +310,7 @@ describe('Transaction', function() {
310
310
. change ( changeAddress )
311
311
. sign ( privateKey ) ;
312
312
transaction . outputs . length . should . equal ( 2 ) ;
313
- transaction . outputs [ 1 ] . satoshis . should . equal ( 400000 ) ;
313
+ transaction . outputs [ 1 ] . satoshis . should . equal ( 477636 ) ;
314
314
transaction . outputs [ 1 ] . script . toString ( )
315
315
. should . equal ( Script . fromAddress ( changeAddress ) . toString ( ) ) ;
316
316
var actual = transaction . getChangeOutput ( ) . script . toString ( ) ;
@@ -384,7 +384,7 @@ describe('Transaction', function() {
384
384
. sign ( privateKey ) ;
385
385
transaction . _estimateSize ( ) . should . be . within ( 1000 , 1999 ) ;
386
386
transaction . outputs . length . should . equal ( 2 ) ;
387
- transaction . outputs [ 1 ] . satoshis . should . equal ( 34000 ) ;
387
+ transaction . outputs [ 1 ] . satoshis . should . equal ( 40687 ) ;
388
388
} ) ;
389
389
it ( 'if satoshis are invalid' , function ( ) {
390
390
var transaction = new Transaction ( )
@@ -935,7 +935,7 @@ describe('Transaction', function() {
935
935
. change ( changeAddress )
936
936
. to ( toAddress , 1000 ) ;
937
937
transaction . inputAmount . should . equal ( 100000000 ) ;
938
- transaction . outputAmount . should . equal ( 99900000 ) ;
938
+ transaction . outputAmount . should . equal ( 99977636 ) ;
939
939
} ) ;
940
940
it ( 'returns correct values for coinjoin transaction' , function ( ) {
941
941
// see livenet tx c16467eea05f1f30d50ed6dbc06a38539d9bb15110e4b7dc6653046a3678a718
@@ -1007,7 +1007,7 @@ describe('Transaction', function() {
1007
1007
expect ( function ( ) {
1008
1008
tx . shuffleOutputs ( ) ;
1009
1009
} ) . to . not . throw ( errors . Transaction . InvalidSorting ) ;
1010
- } )
1010
+ } ) ;
1011
1011
} ) ;
1012
1012
1013
1013
describe ( 'clearOutputs' , function ( ) {
@@ -1027,7 +1027,7 @@ describe('Transaction', function() {
1027
1027
tx . outputs . length . should . equal ( 2 ) ;
1028
1028
tx . outputs [ 0 ] . satoshis . should . equal ( 10000000 ) ;
1029
1029
tx . outputs [ 0 ] . script . toAddress ( ) . toString ( ) . should . equal ( toAddress ) ;
1030
- tx . outputs [ 1 ] . satoshis . should . equal ( 89900000 ) ;
1030
+ tx . outputs [ 1 ] . satoshis . should . equal ( 89977636 ) ;
1031
1031
tx . outputs [ 1 ] . script . toAddress ( ) . toString ( ) . should . equal ( changeAddress ) ;
1032
1032
} ) ;
1033
1033
0 commit comments