which doesn't seem to be able to handle it. When invoked you get the following error message:
Error interpreting file `smartcont/wallet.fif`: wallet.fif:70: u,:integer does not fit into cell
Please consider not invoking the wallet contract on a negative seqno, or handle the lite-client error explicitly instead of returning -1 to prevent this issue.
If for some reason the
lite-client
call to getseqno
fails a-1
is returned.https://github.com/neodiX42/MyLocalTon/blob/996edcebc709f263612cb77268004d781ed5b7f6/src/main/java/org/ton/executors/liteclient/LiteClient.java#L83-L89
That
-1
is propagated to invocation of thesmartcont/wallet.fif
contract, e.g.which doesn't seem to be able to handle it. When invoked you get the following error message:
Please consider not invoking the wallet contract on a negative
seqno
, or handle thelite-client
error explicitly instead of returning-1
to prevent this issue.