Skip to content

Commit

Permalink
nit: match code example with bigint literal
Browse files Browse the repository at this point in the history
  • Loading branch information
d1gitalflow authored and reedrosenbluth committed Oct 26, 2021
1 parent fc83974 commit bb1db2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/transactions/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ const txOptions = {
senderKey: 'b244296d5907de9864c0b0d51f98a13c52890be0404e83f273144cd5b9960eed01',
network,
memo: 'test memo',
nonce: new BigNum(0), // set a nonce manually if you don't want builder to fetch from a Stacks node
fee: new BigNum(200), // set a tx fee if you don't want the builder to estimate
nonce: 0n, // set a nonce manually if you don't want builder to fetch from a Stacks node
fee: 200n, // set a tx fee if you don't want the builder to estimate
anchorMode: AnchorMode.Any,
};

Expand Down

1 comment on commit bb1db2b

@vercel
Copy link

@vercel vercel bot commented on bb1db2b Oct 26, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.