@@ -55,9 +55,9 @@ describe('Stacks: Fungible Token Transfer Builder', () => {
5555 it ( 'an unsigned fungible token transfer transaction' , async ( ) => {
5656 const builder = initTxBuilder ( ) ;
5757 builder . functionArgs ( [
58+ uintCV ( '10000' ) ,
5859 standardPrincipalCV ( testData . FUNGIBLE_TOKEN_TRANSFER_CONSTANTS . SENDER_ADDRESS ) ,
5960 standardPrincipalCV ( testData . FUNGIBLE_TOKEN_TRANSFER_CONSTANTS . RECEIVER_ADDRESS ) ,
60- uintCV ( '10000' ) ,
6161 bufferCVFromString ( '1' ) ,
6262 ] ) ;
6363 builder . fromPubKey ( testData . TX_SENDER . pub ) ;
@@ -84,9 +84,9 @@ describe('Stacks: Fungible Token Transfer Builder', () => {
8484 it ( 'an unsigned fungible token transfer transaction without memo' , async ( ) => {
8585 const builder = initTxBuilder ( ) ;
8686 builder . functionArgs ( [
87+ uintCV ( '10000' ) ,
8788 standardPrincipalCV ( testData . FUNGIBLE_TOKEN_TRANSFER_CONSTANTS . SENDER_ADDRESS ) ,
8889 standardPrincipalCV ( testData . FUNGIBLE_TOKEN_TRANSFER_CONSTANTS . RECEIVER_ADDRESS ) ,
89- uintCV ( '10000' ) ,
9090 ] ) ;
9191 builder . fromPubKey ( testData . TX_SENDER . pub ) ;
9292 builder . numberSignatures ( 1 ) ;
@@ -115,9 +115,9 @@ describe('Stacks: Fungible Token Transfer Builder', () => {
115115 it ( 'a multisig fungible token transfer transaction' , async ( ) => {
116116 const builder = initTxBuilder ( ) ;
117117 builder . functionArgs ( [
118+ uintCV ( '10000' ) ,
118119 standardPrincipalCV ( testData . FUNGIBLE_TOKEN_TRANSFER_CONSTANTS . SENDER_ADDRESS ) ,
119120 standardPrincipalCV ( testData . FUNGIBLE_TOKEN_TRANSFER_CONSTANTS . RECEIVER_ADDRESS ) ,
120- uintCV ( '10000' ) ,
121121 bufferCVFromString ( '1' ) ,
122122 ] ) ;
123123
0 commit comments