Skip to content

Commit 1dfe7a4

Browse files
authored
fix: LackOfFundForMaxFee fee type should be U256 (#138)
1 parent d1af016 commit 1dfe7a4

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ include = ["src/**/*", "LICENSE", "README.md"]
2424
license = "MIT"
2525
name = "bitfinity-evm-sdk"
2626
repository = "https://github.com/bitfinity-network/bitfinity-evm-sdk"
27-
version = "0.12.0"
27+
version = "0.13.0"
2828

2929
[workspace.dependencies]
3030
alloy-primitives = { version = "0.6", default-feures = false }

src/did/src/error.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ pub enum HaltError {
179179
CallerGasLimitMoreThanBlock,
180180
RejectCallerWithCode,
181181
LackOfFundForMaxFee {
182-
fee: u64,
182+
fee: U256,
183183
balance: U256,
184184
},
185185
OverflowPayment,

0 commit comments

Comments
 (0)