Skip to content

Commit

Permalink
chore(tests): lower the test mina send amount
Browse files Browse the repository at this point in the history
  • Loading branch information
mrcnk committed Jun 12, 2024
1 parent e5d68de commit de9faa1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,12 +105,12 @@ describe("Unified Submit Transaction Provider (Functional)", () => {
})) as Record<string, AccountInfo>

// construct transaction, sign, and submit
const amount = 1 * 1e9
const amount = 0.5 * 1e9
const inferredNonce = accountInfo.MINA?.inferredNonce ?? 0
const transaction: Mina.TransactionBody = {
to: "B62qjsV6WQwTeEWrNrRRBP6VaaLvQhwWTnFi4WP4LQjGvpfZEumXzxb",
from: "B62qjsV6WQwTeEWrNrRRBP6VaaLvQhwWTnFi4WP4LQjGvpfZEumXzxb",
fee: 1 * 1e9,
fee: 0.2 * 1e9,
amount: amount,
nonce: Number(inferredNonce),
memo: "test suite",
Expand Down

0 comments on commit de9faa1

Please sign in to comment.