Skip to content

Commit

Permalink
chore: spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
dtscalac committed May 17, 2024
1 parent b8a5d98 commit 55867a5
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import 'package:catalyst_cardano_serialization/catalyst_cardano_serialization.da
import 'package:cbor/cbor.dart';
import 'package:convert/convert.dart';

/* cSpell:disable */
void main() {
const txBuilderConfig = TransactionBuilderConfig(
feeAlgo: LinearFee(
Expand Down Expand Up @@ -57,7 +58,7 @@ void main() {
final txBuilder = TransactionBuilder(
config: txBuilderConfig,
inputs: [utxo],
// fee can be left empty so that it's autocalculated or can be hardcoded
// fee can be left empty so that it's auto calculated or can be hardcoded
// fee: const Coin(1000000),
ttl: const SlotBigNum(410021),
auxiliaryData: txMetadata,
Expand All @@ -72,7 +73,7 @@ void main() {
final txBody = txBuilder
.withOutput(txOutput)
.withChangeAddressIfNeeded(changeAddress)
// fee can be set manually or left empty to be autocalculated
// fee can be set manually or left empty to be auto calculated
// .withFee(const Coin(10000000))
.buildBody();

Expand Down Expand Up @@ -114,3 +115,5 @@ TransactionWitnessSet _signTransaction(TransactionHash txHash) {
},
);
}

/* cSpell:enable */

0 comments on commit 55867a5

Please sign in to comment.