Skip to content

Commit

Permalink
test: improve formatting of operation receipts test case
Browse files Browse the repository at this point in the history
  • Loading branch information
nelitow committed Feb 5, 2025
1 parent 8d4391b commit fa7e08d
Showing 1 changed file with 11 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -898,15 +898,17 @@ describe('operations', () => {

const op2: Operation = {
name: OperationName.transfer,
receipts: [{
type: ReceiptType.Transfer,
to: '0xabc',
amount: bn(100),
assetId: '0x0',
id: '0x123',
pc: bn(0),
is: bn(0),
}],
receipts: [
{
type: ReceiptType.Transfer,
to: '0xabc',
amount: bn(100),
assetId: '0x0',
id: '0x123',
pc: bn(0),
is: bn(0),
},
],
};

const operations = addOperation([op1], op2);
Expand Down

0 comments on commit fa7e08d

Please sign in to comment.