@@ -15,7 +15,7 @@ describe('Vet Transfer Transaction', () => {
1515 txBuilder . sender ( testData . addresses . validAddresses [ 0 ] ) ;
1616 txBuilder . recipients ( testData . recipients ) ;
1717 txBuilder . gas ( 21000 ) ;
18- txBuilder . nonce ( 64248 ) ;
18+ txBuilder . nonce ( ' 64248' ) ;
1919 txBuilder . blockRef ( '0x014ead140e77bbc1' ) ;
2020 txBuilder . addFeePayerAddress ( testData . feePayer . address ) ;
2121 txBuilder . expiration ( 64 ) ;
@@ -26,7 +26,7 @@ describe('Vet Transfer Transaction', () => {
2626 should . equal ( tx . recipients [ 0 ] . amount , testData . recipients [ 0 ] . amount ) ;
2727 should . equal ( tx . gas , 21000 ) ;
2828 should . equal ( tx . getFee ( ) , '315411764705882352' ) ;
29- should . equal ( tx . nonce , 64248 ) ;
29+ should . equal ( tx . nonce , ' 64248' ) ;
3030 should . equal ( tx . expiration , 64 ) ;
3131 should . equal ( tx . type , TransactionType . Send ) ;
3232 tx . inputs . length . should . equal ( 1 ) ;
@@ -48,7 +48,7 @@ describe('Vet Transfer Transaction', () => {
4848
4949 it ( 'should build and send a signed tx' , async function ( ) {
5050 const txBuilder = factory . from ( testData . SPONSORED_TRANSACTION ) ;
51- txBuilder . getNonce ( ) . should . equal ( 186037 ) ;
51+ txBuilder . getNonce ( ) . should . equal ( ' 186037' ) ;
5252
5353 const tx = ( await txBuilder . build ( ) ) as Transaction ;
5454 should . equal ( tx . type , TransactionType . Send ) ;
@@ -81,7 +81,7 @@ describe('Vet Transfer Transaction', () => {
8181 txBuilder . sender ( testData . addresses . validAddresses [ 0 ] ) ;
8282 txBuilder . recipients ( testData . recipients ) ;
8383 txBuilder . gas ( 21000 ) ;
84- txBuilder . nonce ( 64248 ) ;
84+ txBuilder . nonce ( ' 64248' ) ;
8585 txBuilder . expiration ( 64 ) ;
8686 txBuilder . blockRef ( '0x014ead140e77bbc1' ) ;
8787 txBuilder . gasPriceCoef ( 128 ) ;
@@ -100,7 +100,7 @@ describe('Vet Transfer Transaction', () => {
100100 txBuilder . sender ( testData . addresses . validAddresses [ 0 ] ) ;
101101 txBuilder . recipients ( testData . recipients ) ;
102102 txBuilder . gas ( 21000 ) ;
103- txBuilder . nonce ( 64248 ) ;
103+ txBuilder . nonce ( ' 64248' ) ;
104104 txBuilder . expiration ( 64 ) ;
105105 txBuilder . blockRef ( '0x014ead140e77bbc1' ) ;
106106 txBuilder . gasPriceCoef ( 128 ) ;
@@ -114,7 +114,7 @@ describe('Vet Transfer Transaction', () => {
114114 amount : testData . recipients [ 0 ] . amount ,
115115 } ,
116116 ] ) ;
117- should . equal ( toJson . nonce , 64248 ) ;
117+ should . equal ( toJson . nonce , ' 64248' ) ;
118118 should . equal ( toJson . gas , 21000 ) ;
119119 should . equal ( toJson . gasPriceCoef , 128 ) ;
120120 should . equal ( toJson . expiration , 64 ) ;
@@ -133,7 +133,7 @@ describe('Vet Transfer Transaction', () => {
133133 amount : testData . AMOUNT . toString ( ) ,
134134 } ,
135135 ] ) ;
136- should . equal ( toJson . nonce , 186037 ) ;
136+ should . equal ( toJson . nonce , ' 186037' ) ;
137137 should . equal ( toJson . gas , 21000 ) ;
138138 should . equal ( toJson . gasPriceCoef , 128 ) ;
139139 should . equal ( toJson . expiration , 64 ) ;
@@ -145,7 +145,7 @@ describe('Vet Transfer Transaction', () => {
145145 txBuilder . sender ( testData . addresses . validAddresses [ 2 ] ) ;
146146 txBuilder . recipients ( testData . recipients ) ;
147147 txBuilder . gas ( 21000 ) ;
148- txBuilder . nonce ( 64248 ) ;
148+ txBuilder . nonce ( ' 64248' ) ;
149149 txBuilder . blockRef ( '0x014ead140e77bbc1' ) ;
150150 txBuilder . addFeePayerAddress ( testData . feePayer . address ) ;
151151 txBuilder . expiration ( 64 ) ;
0 commit comments