File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -651,7 +651,7 @@ async function parseRosettaTxDetail(opts: {
651
651
events ,
652
652
opts . unlockingEvents
653
653
) ;
654
- const txMemo = parseTransactionMemo ( opts . tx . token_transfer_memo ) ;
654
+ const txMemo = parseTransactionMemo ( opts . tx . token_transfer_memo ) ;
655
655
const rosettaTx : RosettaTransaction = {
656
656
transaction_identifier : { hash : opts . tx . tx_id } ,
657
657
operations : operations ,
Original file line number Diff line number Diff line change @@ -201,4 +201,3 @@ export function getPostgres({
201
201
}
202
202
return sql ;
203
203
}
204
-
Original file line number Diff line number Diff line change @@ -426,7 +426,9 @@ function testSmartContractLogEvent(args?: TestSmartContractLogEventArgs): DbSmar
426
426
event_type : DbEventTypeId . SmartContractLog ,
427
427
contract_identifier : args ?. contract_identifier ?? CONTRACT_ID ,
428
428
topic : args ?. topic ?? 'some-topic' ,
429
- value : args ?. value ?? bufferToHexPrefixString ( Buffer . from ( serializeCV ( bufferCVFromString ( 'some val' ) ) ) ) ,
429
+ value :
430
+ args ?. value ??
431
+ bufferToHexPrefixString ( Buffer . from ( serializeCV ( bufferCVFromString ( 'some val' ) ) ) ) ,
430
432
} ;
431
433
}
432
434
You can’t perform that action at this time.
0 commit comments