We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8937c55 commit 8a49a75Copy full SHA for 8a49a75
common/src/account_transfers.rs
@@ -530,7 +530,7 @@ impl From<FundsTransfer> for Transaction {
530
}
531
} else {
532
Transaction {
533
- kind: "xfer".into(),
+ kind: "transfer".into(),
534
mint: None,
535
burn: None,
536
transfer: Some(Transfer {
ic-canister/tests/test_icrc1.rs
@@ -110,7 +110,10 @@ fn test_multiple_transfers() {
110
assert_eq!(get_tx_response1.log_length, 10u8);
111
112
assert_eq!(get_tx_response1.transactions.len(), 1);
113
- assert_eq!(get_tx_response1.transactions[0].kind, "xfer".to_string());
+ assert_eq!(
114
+ get_tx_response1.transactions[0].kind,
115
+ "transfer".to_string()
116
+ );
117
118
ctx.ffwd_to_next_block(ts_ns);
119
0 commit comments