Skip to content

Commit

Permalink
chore: prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
npty committed Aug 5, 2024
1 parent 8953edb commit 6f05570
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion sui/gas-service.js
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ if (require.main === module) {
.description('Pay gas for the new contract call.')
.option('--refundAddress <refundAddress>', 'Refund address. Default is the sender address.')
.requiredOption('--amount <amount>', 'Amount to pay gas', parseSuiUnitAmount)
.option('--params <params>', 'Params. Default is empty.', "0x")
.option('--params <params>', 'Params. Default is empty.', '0x')
.action((destinationChain, destinationAddress, channelId, payload, options) => {
mainProcessor(options, [destinationChain, destinationAddress, channelId, payload], processCommand, payGas);
});
Expand Down
4 changes: 2 additions & 2 deletions sui/types-utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ const discoveryStruct = bcs.struct('Discovery', {
});

const bagStruct = bcs.struct('Bag', {
id: UID,
size: bcs.U64,
id: UID,
size: bcs.U64,
});

const operatorsStruct = bcs.struct('Operators', {
Expand Down

0 comments on commit 6f05570

Please sign in to comment.