Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion misc/forward-fee-calc.fc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Forward fee calculation supporting different workchains

;; See crypto/block/transaction.cpp:L1499
int msg_fwd_fee(slice destination, cell message_body, cell init_state, int max_viewed_cells) inline {
(int wc, _) = parse_std_addr(destination);
(int workchain, _) = parse_std_addr(destination);
throw_unless(107, (workchain == -1) | (workchain == 0) );
int config_index = 25 + workchain;
slice cfg = config_param(config_index).begin_parse().skip_bits(8);
Expand Down