You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc-site/docs/tutorials/custom_contracts/cardano.md
+17-15Lines changed: 17 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -100,7 +100,7 @@ This is describing a contract with a single method, named `send_ada`. This metho
100
100
101
101
It also emits three events:
102
102
-`TransactionAccepted(string)` is emitted when the transaction is included in a block.
103
-
-`TransactionRolledBack(string)` is emitted if the transaction was included in a block, and that block got rolled back. This happens maybe once or twice a day on the Cardano network, so it is unlikely that you will ever see it in practice (but more likely than some other chains).
103
+
-`TransactionRolledBack(string)` is emitted if the transaction was included in a block, and that block got rolled back. This happens maybe once or twice a day on the Cardano network, which is more likely than some other chains, so your code must be able to gracefully handle rollbacks.
104
104
-`TransactionFinalized(string)` is emitted when the transaction has been on the chain for "long enough" that it is effectively immutable. It is up to your tolerance risk.
105
105
106
106
These three events are all automatically handled by the connector.
@@ -119,7 +119,7 @@ edition = "2021"
119
119
120
120
[dependencies]
121
121
# The version of firefly-balius should match the version of firefly-cardano which you are using.
0 commit comments