HathorNetwork / hathor-explorer-service

MIT License
1 stars 3 forks source link

fix: lambda name > 64 char #104

Closed r4mmer closed 2 years ago

r4mmer commented 2 years ago

Summary

During testnet deploy this error occured:

Value 'hathor-explorer-service-testnet-node_api_get_transaction_acc_weight' at 'functionName' failed to satisfy constraint: Member must have length less than or equal to 64

The hathor-explorer-service-testnet- prefix (length 32) for testnet and hathor-explorer-service-mainnet- (length 32) for mainnet are added to identify the service and network of the lembda, but this leaves 32 characters for the name which node_api_get_transaction_acc_weight (length 35) does not fit.

Aceeptance criteria