@@ -11,7 +11,7 @@ describe('Address Initialisation Transaction', () => {
1111 describe ( 'Succeed' , ( ) => {
1212 it ( 'should build an address initialisation transaction' , async function ( ) {
1313 const transaction = new AddressInitializationTransaction ( coins . get ( 'tvet' ) ) ;
14- const txBuilder = factory . getAddressInitialisationBuilder ( transaction ) ;
14+ const txBuilder = factory . getAddressInitializationBuilder ( transaction ) ;
1515 txBuilder . gas ( 21000 ) ;
1616 txBuilder . nonce ( 64248 ) ;
1717 txBuilder . blockRef ( '0x014ead140e77bbc1' ) ;
@@ -40,7 +40,7 @@ describe('Address Initialisation Transaction', () => {
4040
4141 it ( 'should succeed to validate a valid signablePayload' , async function ( ) {
4242 const transaction = new AddressInitializationTransaction ( coins . get ( 'tvet' ) ) ;
43- const txBuilder = factory . getAddressInitialisationBuilder ( transaction ) ;
43+ const txBuilder = factory . getAddressInitializationBuilder ( transaction ) ;
4444 txBuilder . gas ( 21000 ) ;
4545 txBuilder . nonce ( 64248 ) ;
4646 txBuilder . blockRef ( '0x014ead140e77bbc1' ) ;
@@ -59,7 +59,7 @@ describe('Address Initialisation Transaction', () => {
5959
6060 it ( 'should build a unsigned tx and validate its toJson' , async function ( ) {
6161 const transaction = new AddressInitializationTransaction ( coins . get ( 'tvet' ) ) ;
62- const txBuilder = factory . getAddressInitialisationBuilder ( transaction ) ;
62+ const txBuilder = factory . getAddressInitializationBuilder ( transaction ) ;
6363 txBuilder . gas ( 21000 ) ;
6464 txBuilder . nonce ( 64248 ) ;
6565 txBuilder . blockRef ( '0x014ead140e77bbc1' ) ;
@@ -88,7 +88,7 @@ describe('Address Initialisation Transaction', () => {
8888 describe ( 'Fail' , ( ) => {
8989 it ( 'should fail if invalid params are used to build a tx' , async function ( ) {
9090 const transaction = new AddressInitializationTransaction ( coins . get ( 'tvet' ) ) ;
91- const txBuilder = factory . getAddressInitialisationBuilder ( transaction ) ;
91+ const txBuilder = factory . getAddressInitializationBuilder ( transaction ) ;
9292
9393 should ( ( ) => txBuilder . baseAddress ( 'randomString' ) ) . throwError ( 'Invalid address randomString' ) ;
9494 should ( ( ) => txBuilder . contract ( 'randomString' ) ) . throwError ( 'Invalid address randomString' ) ;
0 commit comments