diff --git a/end2end-tests/cucumber-features/balance_transfer.feature b/end2end-tests/cucumber-features/balance_transfer.feature
index ecddb1d6655adce4ac683a112edf3c7a4f95d148..21fb3036de0e6b56fb6b842cac58b31be92ce6ae 100644
--- a/end2end-tests/cucumber-features/balance_transfer.feature
+++ b/end2end-tests/cucumber-features/balance_transfer.feature
@@ -1,6 +1,28 @@
 Feature: Balance transfer
 
-  Scenario: If alice sends 5 ÄžD to Dave, Dave will get 5 ÄžD
-    Given alice have 10 ÄžD
+  Scenario: Create a new account with enough founds
     When alice send 5 ÄžD to dave
     Then dave should have 5 ÄžD
+    When 1 block later
+    """
+    The blockchain should automatically withdraw account creation tax (3 ÄžD)
+    """
+    Then dave should have 2 ÄžD
+
+  Scenario: Create a new account without enough founds then retry with enough founds
+    When alice send 2 ÄžD to eve
+    Then eve should have 2 ÄžD
+    When 1 block later
+    """
+    The blockchain should automatically destroy Evec account
+    because Eve not have enough founds to pay the new account tax
+    """
+    Then eve should have 0 ÄžD
+    When alice send 5 ÄžD to eve
+    Then eve should have 5 ÄžD
+    When 1 block later
+    """
+    The blockchain should automatically withdraw account creation tax (3 ÄžD)
+    """
+    Then eve should have 2 ÄžD
+