Skip to content
Discussion options

You must be logged in to vote

How to debug an error code

In this case, let's go through the breakdown:

{
"Error": "Simulation failed with status: Move abort in 0x3::token: 0x60001"
}
  1. Simulation failed with status -> This means simulation failed, and no transaction was submitted to fail. Means that if the transaction had been actually submitted, it would have failed (but there's no gas spent)
  2. Move abort in 0x3::token -> We have an abort in 0x3::token. In this case, you can find this at the 0x3 address, under module token. You can see this source in the explorer https://explorer.aptoslabs.com/account/0x3/modules/code/token?network=mainnet
  3. 0x60001 This means it's error code 0x60001. This can be one of two things, someo…

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@gregnazario
Comment options

Answer selected by kshitijc1506
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants