Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
rianhughes committed Jan 16, 2024
1 parent 907cef4 commit d2f38b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/simpleInvoke/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ func main() {
}
fmt.Println("Nonce : ", nonce)

//// Transaction 1 0x1dff5fd40ac1d2c207b6b681dc3ab88946c3eed7dbaf4b63d2bf4956feb0dc1
//// Transaction 1
noncePlus1 := new(felt.Felt).Add(nonce, new(felt.Felt).SetUint64(1))
txn1, err := prepareTx(accnt, clientv02, account_address, ks, noncePlus1)
if err != nil {
Expand All @@ -81,7 +81,7 @@ func main() {
}
fmt.Println("Transaction hash response 1: ", resp1.TransactionHash)

//// Transaction 2 0x5c46c2112b897c346d6692d4b00832232fb18b0b62d929c23cc2dc058aad3a7
//// Transaction 2
noncePlus2 := new(felt.Felt).Add(nonce, new(felt.Felt).SetUint64(2))
txn2, err2 := prepareTx(accnt, clientv02, account_address, ks, noncePlus2)
if err2 != nil {
Expand Down

0 comments on commit d2f38b0

Please sign in to comment.