paych: Lanes are back to u64

This commit is contained in:
Łukasz Magiera
2020-02-21 18:26:44 +01:00
parent c744dc06c6
commit 104871d6c9
10 changed files with 27 additions and 24 deletions
+1 -1
View File
@@ -40,7 +40,7 @@ func (a *PaychAPI) PaychGet(ctx context.Context, from, to address.Address, ensur
}, nil
}
func (a *PaychAPI) PaychAllocateLane(ctx context.Context, ch address.Address) (int64, error) {
func (a *PaychAPI) PaychAllocateLane(ctx context.Context, ch address.Address) (uint64, error) {
return a.PaychMgr.AllocateLane(ch)
}