Cleanup counter tx check, add replay protection to cli tests

This commit is contained in:
Ethan Frey 2017-07-14 12:36:51 +02:00
parent 6d35b1f934
commit e5db61a63a
1 changed files with 6 additions and 0 deletions

View File

@ -64,6 +64,12 @@ test02SendTxWithFee() {
# Make sure tx is indexed
checkSendFeeTx $HASH $TX_HEIGHT $SENDER "90" "10"
# assert replay protection
TX=$(echo qwertyuiop | ${CLIENT_EXE} tx send --amount=90mycoin --fee=10mycoin --sequence=2 --to=$RECV --name=$RICH)
assertFalse "replay: $TX" $?
checkAccount $SENDER "9007199254739900"
checkAccount $RECV "1082"
}