Skip to content

Commit

Permalink
Fix operation value
Browse files Browse the repository at this point in the history
  • Loading branch information
yagopv committed Aug 30, 2023
1 parent 024be5a commit 582dbf8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/protocol-kit/tests/unit/eip-712.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { SafeTransactionData } from '@safe-global/safe-core-sdk-types'
import { SafeTransactionData, OperationType } from '@safe-global/safe-core-sdk-types'
import chai from 'chai'
import {
EIP712_DOMAIN,
Expand All @@ -12,7 +12,7 @@ const safeTransactionData: SafeTransactionData = {
to: '0x000',
value: '111',
data: '0x222',
operation: 333,
operation: OperationType.DelegateCall,
safeTxGas: '444',
baseGas: '555',
gasPrice: '666',
Expand Down

0 comments on commit 582dbf8

Please sign in to comment.