Rename verifyMoveCommand()

Rename verifyMoveCommands() to verifyMoveCommand() to represent that move commands must
be singular within a transaction.
This commit is contained in:
Ross Nicoll
2016-05-27 16:49:07 +01:00
parent af53a52b06
commit 723e610dfc
2 changed files with 2 additions and 2 deletions

View File

@ -89,7 +89,7 @@ abstract class FungibleAsset<T> : Contract {
(inputAmount == outputAmount + amountExitingLedger)
}
verifyMoveCommands<Commands.Move>(inputs, tx)
verifyMoveCommand<Commands.Move>(inputs, tx)
}
}
}