Skip to content

Commit

Permalink
refactor: move fee to function call
Browse files Browse the repository at this point in the history
  • Loading branch information
aoudiamoncef committed Oct 20, 2023
1 parent b75ccec commit 7fe0140
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions proto/commons/massa/model/v1/execution.proto
Original file line number Diff line number Diff line change
Expand Up @@ -395,8 +395,6 @@ message ReadOnlyExecutionCall {
bool is_final = 6;
// Coins transferred to the target address during the call
massa.model.v1.NativeAmount coins = 7;
// fee paid by the caller when the call is processed.
massa.model.v1.NativeAmount fee = 8;
}

/// Execute a bytecode
Expand All @@ -415,6 +413,8 @@ message FunctionCall {
string target_function = 2;
// Parameter to pass to the target function
bytes parameter = 3;
// fee paid by the caller when the call is processed.
massa.model.v1.NativeAmount fee = 4;
}

// Structure describing the output of a read only execution
Expand Down

0 comments on commit 7fe0140

Please sign in to comment.