Error message when trying to request a payment #477
paulman5
started this conversation in
Dev Doc and Tutorial Feedback
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
We have created an Aptos function to request and send payments however if we do try to request a payment we get the following error:
For the send_payment request we include a few function signatures like:
public entry fun send_payment( account: &signer, recipient: address, amount: u64, note: String ) acquires UserProfile {
For clarity I will post the source to our move smart contract: https://github.com/merkle-builders/FundMate/blob/main/contract/sources/fundmate.move and the frontend interaction code: https://github.com/merkle-builders/FundMate/blob/main/src/entry-functions/sendPayment.ts.
Beta Was this translation helpful? Give feedback.
All reactions