SDK: remove semicolon in event definition (#3249)

This commit is contained in:
Ben Guidarelli 2023-08-02 16:44:44 -04:00 committed by GitHub
parent 9d6c88a771
commit 544d542c6e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ export function parseWormholeLog(log: ethers.providers.Log): {
parsed: DeliveryInstruction | string; parsed: DeliveryInstruction | string;
} { } {
const abi = [ const abi = [
"event LogMessagePublished(address indexed sender, uint64 sequence, uint32 nonce, bytes payload, uint8 consistencyLevel);", "event LogMessagePublished(address indexed sender, uint64 sequence, uint32 nonce, bytes payload, uint8 consistencyLevel)",
]; ];
const iface = new ethers.utils.Interface(abi); const iface = new ethers.utils.Interface(abi);
const parsed = iface.parseLog(log); const parsed = iface.parseLog(log);