Skip to content

Commit d5ee246

Browse files
Update intent_binding.rs
1 parent 4b36a0b commit d5ee246

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/intent_binding.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,11 @@
88
/// - Enforce correctness
99
/// - Interact with the state machine
1010
/// - Assume XRPL semantics
11-
#[derive(Debug, Clone, PartialEq, Eq)]
11+
use serde::Serialize;
12+
13+
#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
1214
pub struct IntentBinding {
15+
1316
/// Identifier for the target ledger or environment.
1417
/// Example: "XRPL-mainnet", "XRPL-testnet", "simulated-ledger"
1518
pub ledger_id: String,

0 commit comments

Comments
 (0)