dfinity / cdk-rs

Rust canister development kit for the Internet Computer.
Apache License 2.0
202 stars 88 forks source link

Some error codes are missing #506

Open vporton opened 2 months ago

vporton commented 2 months ago

In cdk-rs compared to Motoko some error codes are missing.

Namely are missing:

  // Future error code (with unrecognized numeric code).
  #future : Nat32;
  // Error issuing inter-canister call
  // (indicating destination queue full or freezing threshold crossed).
  #call_error : { err_code :  Nat32 }

Missing #call_error is a severe blocker for my work.