Skip to content

Commit

Permalink
issue #104 - renamed fee to max fee
Browse files Browse the repository at this point in the history
  • Loading branch information
tonowie committed Sep 18, 2019
1 parent f6bf961 commit d4bc87b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/e2e/java/io/proximax/sdk/steps/TransferSteps.java
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public void grantFundsToAccount(String recipientName, BigDecimal amount, String
TransferUtils.announce(api, getSeedAccount(), tx, getTimeoutSeconds());
}

@When("{string} sends {bigdecimal} of {string} to {string} with plaintext message {string} and fee {bigdecimal}")
@When("{string} sends {bigdecimal} of {string} to {string} with plaintext message {string} and max fee {bigdecimal}")
public void sendMosaicWithPlaintextMessage(String sender, BigDecimal amount, String mosaicName, String recipientName,
String message, BigDecimal fee) throws InterruptedException, ExecutionException {
Mosaic mosaic = getMosaic(mosaicName, amount);
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/features/transfer.feature
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ Feature: Transfer mosaics and messages

Scenario: Send network currency
Given "Alice" is granted 10.0 of "network currency"
When "Alice" sends 8.5 of "network currency" to "Bob" with plaintext message "hi Bob" and fee 1.0
When "Alice" sends 8.5 of "network currency" to "Bob" with plaintext message "hi Bob" and max fee 1.0
Then "Alice" has 0.5 of "network currency"
And "Bob" has 8.5 of "network currency"

0 comments on commit d4bc87b

Please sign in to comment.