You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are 3 calls to simulateMsgGas, which does a GasEstimateMessageGas, two in storage/pipeline/commit_batch.go and one in storage/pipeline/precommit_batch.go. The two in commit_batch.go have a log.Errorf that provides the hex of the cbor encoded params. The one in precommit_batch.go skips the log.
Unfortunately, the params aren't quite enough to be able to re-execute the message to see the error. If the log is moved into simulateMsgGas then the full encoded message could be printed which could then be run with lotus-shed msg <hex>. The command itself could even be put into the log output to just make it a copy-paste exercise.
The text was updated successfully, but these errors were encountered:
There are 3 calls to
simulateMsgGas
, which does aGasEstimateMessageGas
, two instorage/pipeline/commit_batch.go
and one instorage/pipeline/precommit_batch.go
. The two incommit_batch.go
have alog.Errorf
that provides the hex of the cbor encoded params. The one inprecommit_batch.go
skips the log.Unfortunately, the params aren't quite enough to be able to re-execute the message to see the error. If the log is moved into
simulateMsgGas
then the full encoded message could be printed which could then be run withlotus-shed msg <hex>
. The command itself could even be put into the log output to just make it a copy-paste exercise.The text was updated successfully, but these errors were encountered: