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
Sequence looks like a uint64 in the above, so I believe we should be parsing with ParseUint. Its also being cast to uint64 after parsing and during assignment to tx.Packet.Sequence. Please let me know if I am wrong.
In interchaintest/chain/cosmos/cosmos_chain.go
SendIBCTransfer
, there appears to be a bug...Defined in ICS-4, sequences are int64 type. The call to
strconv.Atoi
treats it as an int type. It should usestrconv.ParseInt(seq, 10, 64)
.The text was updated successfully, but these errors were encountered: