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
Hello,
There's a mismatch in theTxReceipt of the mint function between the candid and the rust implementation
In Rust it's Nat and in candid it's Nat64
candid
type MintResult = variant {
Ok : TransactionId;
Err: MintError;
};
type TransactionId = nat64;
Hello,
There's a mismatch in the
TxReceipt
of the mint function between the candid and the rust implementationIn Rust it's
Nat
and in candid it'sNat64
candid
dank/candid/xtc.did
Line 59 in 965e3df
Rust implementation
dank/xtc/src/ledger.rs
Line 310 in f80e1e4
The text was updated successfully, but these errors were encountered: