Publicación
Comparte tu conocimiento.
tomek180
Jan 18, 2025
P&R expertos
How to fix the error: MoveAbort in command 0?
I encountered an error when running a transaction, and the error message was 'Transaction failed with the following error. Dry run failed, could not automatically determine a budget: MoveAbort'. The error seems to originate in the 'option.move' module, specifically in the 'extract' function. It says 'Aborts if t does not hold a value'. What could be causing this and how can I fix it?
- Move CLI
- Move Bug
1
1
Cuota
Comentarios
Respuestas
1Britain92
Jan 18 2025, 10:43extract
El error se produce porque la option.move
función del t.is_some()
módulo se cancela cuando se produce un error en la aserción. Esto significa que t
se espera que la opción contenga un valor, pero no lo tiene en el momento en que se llama a la función. Asegúrese de que la opción esté establecida en «algunos» antes de llamarextract
.
1
Mejor Respuesta
Comentarios
Sabes la respuesta?
Inicie sesión y compártalo.