Commit 3f3c27c
committed
fix: correct apply_delta_to_u128 signature to take &i128 (closes #407)
The IDataStore trait declared delta: i128 (owned) while every call site
in the same file passes a reference (&fee_tokens, &net_collateral).
Changed the trait declaration to delta: &i128 to match the Soroban client
convention and all existing call sites.1 parent 8b916d6 commit 3f3c27c
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
28 | 28 | | |
29 | 29 | | |
30 | 30 | | |
31 | | - | |
| 31 | + | |
32 | 32 | | |
33 | 33 | | |
34 | 34 | | |
| |||
0 commit comments