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
Copy file name to clipboardExpand all lines: batcher/aligned-batcher/src/lib.rs
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -451,7 +451,8 @@ impl Batcher {
451
451
*batch_merkle_root,
452
452
batch_data_pointer,
453
453
submitter_addresses,
454
-
U256::from(400000000000000u64),
454
+
U256::from(350000u64),// FIXME(uri): This value should be read from /Users/urix/aligned_layer/contracts/script/deploy/config/devnet/batcher-payment-service.devnet.config.json
455
+
U256::from(21000u64),//FIXME(uri): This value should be read from /Users/urix/aligned_layer/contracts/script/deploy/config/devnet/batcher-payment-service.devnet.config.json
@@ -63,38 +53,33 @@ contract BatcherPaymentService is
63
53
bytes32batchMerkleRoot,
64
54
stringcalldatabatchDataPointer,
65
55
address[] calldataproofSubmitters, // one address for each payer proof, 1 user has 2 proofs? send twice that address
66
-
uint256 costOfRespondToTask // TODO hardcode gas cost? It is variable because of signature sdk. could have upper bound and multiply by current gas cost + x%.
0 commit comments