Browse Source

Update API with new buckets synchronization

feature/sql-semaphore1
Eduard S 3 years ago
parent
commit
d1ced80e62
3 changed files with 11 additions and 6 deletions
  1. +10
    -0
      api/api_test.go
  2. +1
    -1
      api/state_test.go
  3. +0
    -5
      api/swagger.yml

+ 10
- 0
api/api_test.go

@ -374,11 +374,21 @@ func TestMain(m *testing.M) {
OpenAuctionSlots: uint16(5),
}
var buckets [common.RollupConstNumBuckets]common.BucketParams
for i := range buckets {
buckets[i].CeilUSD = big.NewInt(int64(i) * 10)
buckets[i].Withdrawals = big.NewInt(int64(i) * 100)
buckets[i].BlockWithdrawalRate = big.NewInt(int64(i) * 1000)
buckets[i].MaxWithdrawals = big.NewInt(int64(i) * 10000)
}
rollupVars := common.RollupVariables{
EthBlockNum: int64(3),
FeeAddToken: big.NewInt(100),
ForgeL1L2BatchTimeout: int64(44),
WithdrawalDelay: uint64(3000),
Buckets: buckets,
SafeMode: false,
}
wdelayerVars := common.WDelayerVariables{

+ 1
- 1
api/state_test.go

@ -82,7 +82,7 @@ func TestNextForgers(t *testing.T) {
func TestUpdateNetworkInfo(t *testing.T) {
status := &Network{}
assert.Equal(t, status.LastSyncBlock, api.status.Network.LastSyncBlock)
assert.Equal(t, status.LastBatch.BatchNum, api.status.Network.LastBatch.BatchNum)
assert.Equal(t, status.LastBatch, api.status.Network.LastBatch)
assert.Equal(t, status.CurrentSlot, api.status.Network.CurrentSlot)
assert.Equal(t, status.NextForgers, api.status.Network.NextForgers)
lastBlock := tc.blocks[3]

+ 0
- 5
api/swagger.yml

@ -2791,10 +2791,6 @@ components:
type: integer
description: Max USD value
example: 1000
blockStamp:
type: integer
description: Last time a withdrawal was added ( or removed if the bucket was full)
example: 4475934
withdrawals:
type: integer
description: Available withdrawals of the bucket
@ -2810,7 +2806,6 @@ components:
additionalProperties: false
required:
- ceilUSD
- blockStamp
- withdrawals
- blockWithdrawalRate
- maxWithdrawals

Loading…
Cancel
Save