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
{{ message }}
This repository has been archived by the owner on Dec 9, 2023. It is now read-only.
The TransferCommand::Combine CLI command seems to have a bug: let blank_bundle = TransitionBundle::blank(&outpoint_map, &bmap! {})?; will always receive a NoOutpoint error, since the TransitionBundle::blank method expects to find at least an outpoint in it:
So we cannot provide an empty bmap for the new_outpoints parameter.
As said in this comment #196 (comment) we should allow the specification of new outpoints via CLI, eventually failing back to the change outpoint if those are not provided
The text was updated successfully, but these errors were encountered:
reporting an issue mentioned in #196:
The
TransferCommand::Combine
CLI command seems to have a bug:let blank_bundle = TransitionBundle::blank(&outpoint_map, &bmap! {})?;
will always receive aNoOutpoint
error, since theTransitionBundle::blank
method expects to find at least an outpoint in it:So we cannot provide an empty
bmap
for thenew_outpoints
parameter.As said in this comment #196 (comment) we should allow the specification of new outpoints via CLI, eventually failing back to the change outpoint if those are not provided
The text was updated successfully, but these errors were encountered: