Skip to content
Snippets Groups Projects

Remove account creation fee

Merged Cédric Moreau requested to merge 187-remove-identity-creation-fee into master
12 files
+ 19
249
Compare changes
  • Side-by-side
  • Inline
Files
12
@@ -5,26 +5,26 @@ Feature: Account creation
Then dave should have 5 ĞD
When 1 block later
"""
The blockchain should automatically withdraw account creation tax (3 ĞD)
The blockchain did not automatically withdraw account creation tax (3 ĞD) because this feature has been removed
"""
Then dave should have 2 ĞD
Then dave should have 5 ĞD
Scenario: Create a new account without enough funds then retry with enough funds
When alice sends 2 ĞD to eve
Then eve should have 2 ĞD
When 1 block later
"""
The blockchain should automatically destroy Eve account
because Eve does not have enough funds to pay the new account tax
The blockchain did not automatically destroy Eve account for Eve not having enough funds to pay the new account tax
Because this feature has been removed
"""
Then eve should have 0 ĞD
Then eve should have 2 ĞD
When alice send 5 ĞD to eve
Then eve should have 5 ĞD
Then eve should have 7 ĞD
When 1 block later
"""
The blockchain should automatically withdraw account creation tax (3 ĞD)
The blockchain did not automatically withdraw account creation tax (3 ĞD) because this feature has been removed
"""
Then eve should have 2 ĞD
Then eve should have 7 ĞD
@ignoreErrors
Scenario: Create a new account without any funds
@@ -37,6 +37,6 @@ Feature: Account creation
Then eve should have 5 ĞD
When 1 block later
"""
The blockchain should automatically withdraw account creation tax (3 ĞD)
The blockchain did not automatically withdraw account creation tax (3 ĞD) because this feature has been removed
"""
Then eve should have 2 ĞD
Then eve should have 5 ĞD
Loading